You are here

function vars_update_6102 in Variable API 6.2

Same name and namespace in other branches
  1. 6 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();
  $ret[] = array(
    'success' => TRUE,
    'query' => 'Flushed the module cache',
  );
  cache_clear_all('*', 'cache_vars', TRUE);
  return $ret;
}