* Now an array to disable with granularity * Fixed all CSRF tokens back to 1 min * Added CSRF protection for unlock account * Unified error message for all csrf tokens * Fixed a few issues with last commit
11 lines
204 B
PHP
11 lines
204 B
PHP
<?php
|
|
|
|
// Make sure we are called from index.php
|
|
if (!defined('SECURITY'))
|
|
die('Hacking attempt');
|
|
|
|
// This probably (?) never fails
|
|
$user->logoutUser();
|
|
$smarty->assign("CONTENT", "default.tpl");
|
|
?>
|