X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=index.php;h=40cadf885ae03459f4af2d95c397e701a5c9bd95;hb=01c0e050ad8eca54f115dfa21db99e4f61ab7ca7;hp=dd70a989d897ebd5b6cbb51bb1e251818f51a779;hpb=55821e04c188997d258645975220828e195d0df4;p=github%2Fwallabag%2Fwallabag.git diff --git a/index.php b/index.php index dd70a989..40cadf88 100644 --- a/index.php +++ b/index.php @@ -10,19 +10,11 @@ include dirname(__FILE__).'/inc/poche/config.inc.php'; -#XSRF protection with token -// if (!empty($_POST)) { -// if (!Session::isToken($_POST['token'])) { -// die(_('Wrong token')); -// } -// unset($_SESSION['tokens']); -// } - $referer = empty($_SERVER['HTTP_REFERER']) ? '' : $_SERVER['HTTP_REFERER']; $view = Tools::checkVar('view', 'home'); $action = Tools::checkVar('action'); $id = Tools::checkVar('id'); -$_SESSION['sort'] = Tools::checkVar('sort'); +$_SESSION['sort'] = Tools::checkVar('sort', 'id'); $url = new Url((isset ($_GET['url'])) ? $_GET['url'] : ''); if (isset($_GET['login'])) { @@ -62,7 +54,8 @@ else { } # because messages can be added in $poche->action(), we have to add this entry now (we can add it before) -$tpl_vars = array_merge($tpl_vars, array('messages' => $poche->messages->display())); +$messages = $poche->messages->display('all', FALSE); +$tpl_vars = array_merge($tpl_vars, array('messages' => $messages)); # Aaaaaaand action ! echo $poche->tpl->render($tpl_file, $tpl_vars); \ No newline at end of file