You are here

function boost_update_6110 in Boost 6

Update 6110 - Flush core caches

File

./boost.install, line 1078
Handles Boost module installation and upgrade tasks.

Code

function boost_update_6110() {

  // Flush caches, needed since the menus where changed around.
  drupal_flush_all_caches();
  return array(
    array(
      'success' => TRUE,
      'query' => 'Core Caches Flushed.',
    ),
  );
}