Delete all APC values before showing them in the settings and admin section

This commit is contained in:
Michael Vogel 2013-09-27 23:02:59 +02:00
commit ab7d8bc6ab
2 changed files with 10 additions and 0 deletions

View file

@ -16,6 +16,11 @@ function get_theme_config_file($theme){
function settings_init(&$a) {
if (function_exists("apc_delete")) {
$toDelete = new APCIterator('user', APC_ITER_VALUE);
apc_delete($toDelete);
}
// These lines provide the javascript needed by the acl selector
$tpl = get_markup_template("settings-head.tpl");