function vars_update_6102 in Variable API 6
Same name and namespace in other branches
- 6.2 vars.install \vars_update_6102()
Implements hook_update_N().
File
- ./
vars.install, line 79 - Install, update and uninstall functions for the Variable API module.
Code
function vars_update_6102() {
$ret = array();
cache_clear_all('*', 'cache_vars', TRUE);
$ret[] = array(
'success' => TRUE,
'query' => 'Flushed the module cache',
);
return $ret;
}