system_update_6013
Definition
system_update_6013()
modules/system/system.install, line 1354
Description
Rebuild cache data for theme system changes
Code
<?php
function system_update_6013() {
// Rebuild system table contents.
module_rebuild_cache();
system_theme_data();
return array(array('success' => TRUE, 'query' => 'Cache rebuilt.'));
}
?> 