diff options
author | Nicolas Lœuillet <nicolas@loeuillet.org> | 2014-07-12 16:39:31 +0200 |
---|---|---|
committer | Nicolas Lœuillet <nicolas@loeuillet.org> | 2014-07-12 16:39:31 +0200 |
commit | 26b77483ee7545c0e4f8eeb205a5743bf3589adb (patch) | |
tree | 4a1da42493bcf2f16ef6373d7955dad5ff5eda45 /inc/poche/global.inc.php | |
parent | b3cda72e93fff3a4c3476e9e7e78ef2b2a3f02b9 (diff) | |
download | wallabag-26b77483ee7545c0e4f8eeb205a5743bf3589adb.tar.gz wallabag-26b77483ee7545c0e4f8eeb205a5743bf3589adb.tar.zst wallabag-26b77483ee7545c0e4f8eeb205a5743bf3589adb.zip |
remove PicoFarad
I’ll implement it an other day.
Diffstat (limited to 'inc/poche/global.inc.php')
-rwxr-xr-x | inc/poche/global.inc.php | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/inc/poche/global.inc.php b/inc/poche/global.inc.php index 9d710b6c..3eb64df0 100755 --- a/inc/poche/global.inc.php +++ b/inc/poche/global.inc.php | |||
@@ -40,12 +40,6 @@ require_once INCLUDES . '/3rdparty/libraries/PHPePub/Logger.php'; | |||
40 | require_once INCLUDES . '/3rdparty/libraries/PHPePub/EPub.php'; | 40 | require_once INCLUDES . '/3rdparty/libraries/PHPePub/EPub.php'; |
41 | require_once INCLUDES . '/3rdparty/libraries/PHPePub/EPubChapterSplitter.php'; | 41 | require_once INCLUDES . '/3rdparty/libraries/PHPePub/EPubChapterSplitter.php'; |
42 | 42 | ||
43 | require_once INCLUDES . '/3rdparty/PicoFarad/Request.php'; | ||
44 | require_once INCLUDES . '/3rdparty/PicoFarad/Response.php'; | ||
45 | require_once INCLUDES . '/3rdparty/PicoFarad/Router.php'; | ||
46 | require_once INCLUDES . '/3rdparty/PicoFarad/Session.php'; | ||
47 | require_once INCLUDES . '/3rdparty/PicoFarad/Template.php'; | ||
48 | |||
49 | # system configuration; database credentials et caetera | 43 | # system configuration; database credentials et caetera |
50 | require_once INCLUDES . '/poche/config.inc.php'; | 44 | require_once INCLUDES . '/poche/config.inc.php'; |
51 | require_once INCLUDES . '/poche/config.inc.default.php'; | 45 | require_once INCLUDES . '/poche/config.inc.default.php'; |
@@ -61,10 +55,3 @@ if (!ini_get('date.timezone') || !@date_default_timezone_set(ini_get('date.timez | |||
61 | if (defined('ERROR_REPORTING')) { | 55 | if (defined('ERROR_REPORTING')) { |
62 | error_reporting(ERROR_REPORTING); | 56 | error_reporting(ERROR_REPORTING); |
63 | } | 57 | } |
64 | |||
65 | // Start session | ||
66 | Session::$sessionName = 'wallabag'; | ||
67 | Session::init(); | ||
68 | |||
69 | // Let's rock ! | ||
70 | $wallabag = new Poche(); | ||