diff options
author | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-09-12 19:28:59 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-09-12 19:28:59 +0200 |
commit | b9523a0ba09b5641e93fcd8300dd1a9f5145da2d (patch) | |
tree | 404e6ec03b241003610aab888a65ab47e90e6e97 /inc/poche/config.inc.php | |
parent | 084ec2a63df90b775195ad874f8fc0d7fbefbc93 (diff) | |
download | wallabag-b9523a0ba09b5641e93fcd8300dd1a9f5145da2d.tar.gz wallabag-b9523a0ba09b5641e93fcd8300dd1a9f5145da2d.tar.zst wallabag-b9523a0ba09b5641e93fcd8300dd1a9f5145da2d.zip |
fix bug #209: titles with colon bad parsed
Diffstat (limited to 'inc/poche/config.inc.php')
-rwxr-xr-x | inc/poche/config.inc.php | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/inc/poche/config.inc.php b/inc/poche/config.inc.php index 45526695..aaa26af8 100755 --- a/inc/poche/config.inc.php +++ b/inc/poche/config.inc.php | |||
@@ -20,6 +20,7 @@ require_once __DIR__ . '/../../inc/poche/Url.class.php'; | |||
20 | require_once __DIR__ . '/../../inc/3rdparty/class.messages.php'; | 20 | require_once __DIR__ . '/../../inc/3rdparty/class.messages.php'; |
21 | require_once __DIR__ . '/../../inc/poche/Poche.class.php'; | 21 | require_once __DIR__ . '/../../inc/poche/Poche.class.php'; |
22 | require_once __DIR__ . '/../../inc/3rdparty/Readability.php'; | 22 | require_once __DIR__ . '/../../inc/3rdparty/Readability.php'; |
23 | require_once __DIR__ . '/../../inc/poche/PocheReadability.php'; | ||
23 | require_once __DIR__ . '/../../inc/3rdparty/Encoding.php'; | 24 | require_once __DIR__ . '/../../inc/3rdparty/Encoding.php'; |
24 | require_once __DIR__ . '/../../inc/poche/Database.class.php'; | 25 | require_once __DIR__ . '/../../inc/poche/Database.class.php'; |
25 | require_once __DIR__ . '/../../vendor/autoload.php'; | 26 | require_once __DIR__ . '/../../vendor/autoload.php'; |
@@ -47,11 +48,4 @@ if (!ini_get('date.timezone') || !@date_default_timezone_set(ini_get('date.timez | |||
47 | date_default_timezone_set('UTC'); | 48 | date_default_timezone_set('UTC'); |
48 | } | 49 | } |
49 | 50 | ||
50 | $poche = new Poche(); | 51 | $poche = new Poche(); \ No newline at end of file |
51 | #XSRF protection with token | ||
52 | // if (!empty($_POST)) { | ||
53 | // if (!Session::isToken($_POST['token'])) { | ||
54 | // die(_('Wrong token')); | ||
55 | // } | ||
56 | // unset($_SESSION['tokens']); | ||
57 | // } \ No newline at end of file | ||