process(); } break; case 'tidy_cache': if ($use_shutdown_function) { register_shutdown_function(array(&$cache, 'tidy')); } else { $cache->tidy(); } break; case 'tidy_database': include_once($phpbb_root_path . 'includes/functions_admin.'.$phpEx); if ($use_shutdown_function) { register_shutdown_function('tidy_database'); } else { tidy_database(); } break; case 'tidy_login_keys': if ($use_shutdown_function) { register_shutdown_function(array(&$user, 'tidy_login_keys')); } else { $user->tidy_login_keys(); } } // Output transparent gif header('Cache-Control: no-cache'); header('Content-type: image/gif'); header('Content-length: 43'); echo base64_decode('R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=='); flush(); exit; ?>