aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas.loeuillet@gmail.com>2013-08-05 12:53:56 +0200
committerNicolas LÅ“uillet <nicolas.loeuillet@gmail.com>2013-08-05 12:53:56 +0200
commitb161295d0b53a5ae194e236b0a7c662e9ac2ff9a (patch)
tree3937d3f2b1061cfc0b2ae19606ee59de59861166
parent4d0e2544917c8a7fba9eb6d3dccd5fd3790984a6 (diff)
downloadwallabag-b161295d0b53a5ae194e236b0a7c662e9ac2ff9a.tar.gz
wallabag-b161295d0b53a5ae194e236b0a7c662e9ac2ff9a.tar.zst
wallabag-b161295d0b53a5ae194e236b0a7c662e9ac2ff9a.zip
remove xsrf check
-rw-r--r--index.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/index.php b/index.php
index 654403c8..19774bb6 100644
--- a/index.php
+++ b/index.php
@@ -11,12 +11,12 @@
11include dirname(__FILE__).'/inc/poche/config.inc.php'; 11include dirname(__FILE__).'/inc/poche/config.inc.php';
12 12
13#XSRF protection with token 13#XSRF protection with token
14if (!empty($_POST)) { 14// if (!empty($_POST)) {
15 if (!Session::isToken($_POST['token'])) { 15// if (!Session::isToken($_POST['token'])) {
16 die(_('Wrong token')); 16// die(_('Wrong token'));
17 } 17// }
18 unset($_SESSION['tokens']); 18// unset($_SESSION['tokens']);
19} 19// }
20 20
21$referer = empty($_SERVER['HTTP_REFERER']) ? '' : $_SERVER['HTTP_REFERER']; 21$referer = empty($_SERVER['HTTP_REFERER']) ? '' : $_SERVER['HTTP_REFERER'];
22$view = Tools::checkVar('view', 'home'); 22$view = Tools::checkVar('view', 'home');