You are here

function authcache_form_update_7001 in Authenticated User Page Caching (Authcache) 7.2

Update form cache lifespan variable.

File

modules/authcache_form/authcache_form.install, line 50
Install, update and uninstall functions for the authcache form module.

Code

function authcache_form_update_7001() {
  if (variable_get('authcache_form_cache_lifespan') === 'custom') {
    variable_set('authcache_form_cache_lifespan', variable_get('authcache_form_cache_lifespan_custom'));
  }
  variable_del('authcache_form_cache_lifespan_custom');
}