function _authcache_form_remove_build_id in Authenticated User Page Caching (Authcache) 7
1 string reference to '_authcache_form_remove_build_id'
- authcache_form_alter in ./
authcache.module - Implements hook_form_alter(),
File
- ./
authcache.module, line 357 - Authenticated User Page Caching (and anonymous users, too!)
Code
function _authcache_form_remove_build_id($form) {
unset($form['form_build_id']);
unset($form['#build_id']);
return $form;
}