You are here

function system_update_6013 in Drupal 6

Rebuild cache data for theme system changes

Related topics

File

modules/system/system.install, line 1439

Code

function system_update_6013() {

  // Rebuild system table contents.
  module_rebuild_cache();
  system_theme_data();
  return array(
    array(
      'success' => TRUE,
      'query' => 'Cache rebuilt.',
    ),
  );
}