diff options
author | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-08-02 22:43:56 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-08-02 22:43:56 +0200 |
commit | 8069e235fd2971675ee5fc05026ffa9bce5cbbb7 (patch) | |
tree | 872eaed228b5e1b031c21770fba1701106a52a39 /inc/config.php | |
parent | 45161a64026cec35fcf07659508143a6f55ddf57 (diff) | |
download | wallabag-8069e235fd2971675ee5fc05026ffa9bce5cbbb7.tar.gz wallabag-8069e235fd2971675ee5fc05026ffa9bce5cbbb7.tar.zst wallabag-8069e235fd2971675ee5fc05026ffa9bce5cbbb7.zip |
move Twig in 3rdparty
Diffstat (limited to 'inc/config.php')
-rw-r--r-- | inc/config.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/inc/config.php b/inc/config.php index 7470f0c3..65b2b9cc 100644 --- a/inc/config.php +++ b/inc/config.php | |||
@@ -24,17 +24,17 @@ $storage_type = 'sqlite'; # sqlite or file | |||
24 | 24 | ||
25 | # /!\ Be careful if you change the lines below /!\ | 25 | # /!\ Be careful if you change the lines below /!\ |
26 | 26 | ||
27 | require_once 'pocheCore.php'; | 27 | require_once 'poche/pocheTool.class.php'; |
28 | require_once 'Readability.php'; | 28 | require_once 'poche/pocheCore.php'; |
29 | require_once 'Encoding.php'; | 29 | require_once '3rdparty/Readability.php'; |
30 | require_once 'pocheTool.class.php'; | 30 | require_once '3rdparty/Encoding.php'; |
31 | require_once 'Session.class.php'; | 31 | require_once '3rdparty/Session.class.php'; |
32 | require_once 'Twig/Autoloader.php'; | 32 | require_once '3rdparty/Twig/Autoloader.php'; |
33 | require_once 'store/store.class.php'; | 33 | require_once 'store/store.class.php'; |
34 | require_once 'store/' . $storage_type . '.class.php'; | 34 | require_once 'store/' . $storage_type . '.class.php'; |
35 | 35 | ||
36 | if (DOWNLOAD_PICTURES) { | 36 | if (DOWNLOAD_PICTURES) { |
37 | require_once 'pochePicture.php'; | 37 | require_once 'poche/pochePicture.php'; |
38 | } | 38 | } |
39 | 39 | ||
40 | # i18n | 40 | # i18n |