You are here

function metatag_update_7113 in Metatag 7

Clear all metatag output caches if output caching is disabled.

File

./metatag.install, line 2617
Install, update, and uninstall functions for the metatag module.

Code

function metatag_update_7113() {
  if (variable_get('metatag_cache_output', TRUE) == FALSE) {
    cache_clear_all('output:', 'cache_metatag', TRUE);
  }
}