function values_update_6102 in Values 6
Implementation of hook_update_N(). Clear menu caches to enable new menu items.
File
- ./
values.install, line 152 - Install file for Values module.
Code
function values_update_6102(&$sandbox) {
menu_cache_clear_all();
drupal_set_message(t('Menu cache cleared.'));
return array();
}