You are here

function addanother_update_7002 in Add Another 7.2

Implements hook_update_N().

Clears site-wide menu cache as our callback and access arguments have changed.

File

./addanother.install, line 76
Install, update and uninstall functions for the Add another module.

Code

function addanother_update_7002() {
  cache_clear_all(NULL, 'cache_menu');
  menu_rebuild();
}