1
0
mirror of https://github.com/moparisthebest/wallabag synced 2024-08-13 16:54:00 -04:00

remove csrf check

This commit is contained in:
Nicolas Lœuillet 2013-09-18 09:25:28 +02:00
parent f6597c7cb9
commit 0d64be15de

View File

@ -48,12 +48,4 @@ if (!ini_get('date.timezone') || !@date_default_timezone_set(ini_get('date.timez
date_default_timezone_set('UTC');
}
$poche = new Poche();
#XSRF protection with token
if (!empty($_POST)) {
if (!Session::isToken($_POST['token'])) {
die(_('Wrong token'));
}
unset($_SESSION['tokens']);
}
$poche = new Poche();