function markup_update_6100 in Markup 6
Rebuild theme registry.
File
- ./
markup.install, line 80 - Install, update and uninstall functions for Markup module.
Code
function markup_update_6100() {
$ret = array();
drupal_rebuild_theme_registry();
$ret[] = array(
'query' => t('Theme Registry cleared.'),
'success' => TRUE,
);
return $ret;
}