diff options
author | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-08-06 14:18:03 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-08-06 14:18:03 +0200 |
commit | 7ce7ec4c942e0a3567858ad0ec8e654000b49a3f (patch) | |
tree | 8de9df7ff2ddfe980f8247e2305ad4b1b27194fa /inc/poche/config.inc.php | |
parent | 17a9cb96088d4634deca29c8be9f90d94c0f6473 (diff) | |
download | wallabag-7ce7ec4c942e0a3567858ad0ec8e654000b49a3f.tar.gz wallabag-7ce7ec4c942e0a3567858ad0ec8e654000b49a3f.tar.zst wallabag-7ce7ec4c942e0a3567858ad0ec8e654000b49a3f.zip |
prepare to multi users
Diffstat (limited to 'inc/poche/config.inc.php')
-rw-r--r-- | inc/poche/config.inc.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/inc/poche/config.inc.php b/inc/poche/config.inc.php index ee0f6616..d0c686f0 100644 --- a/inc/poche/config.inc.php +++ b/inc/poche/config.inc.php | |||
@@ -21,12 +21,13 @@ define ('ABS_PATH', 'assets/'); | |||
21 | define ('TPL', './tpl'); | 21 | define ('TPL', './tpl'); |
22 | define ('LOCALE', './locale'); | 22 | define ('LOCALE', './locale'); |
23 | define ('CACHE', './cache'); | 23 | define ('CACHE', './cache'); |
24 | define ('LANG', 'fr_FR.UTF8'); | 24 | define ('LANG', 'en_EN.UTF8'); |
25 | define ('PAGINATION', '10'); | 25 | define ('PAGINATION', '10'); |
26 | define ('THEME', 'light'); | 26 | define ('THEME', 'light'); |
27 | $storage_type = 'sqlite'; # sqlite, mysql, (file, not yet) | 27 | $storage_type = 'sqlite'; # sqlite, mysql, (file, not yet) |
28 | 28 | ||
29 | # /!\ Be careful if you change the lines below /!\ | 29 | # /!\ Be careful if you change the lines below /!\ |
30 | require_once './inc/poche/User.class.php'; | ||
30 | require_once './inc/poche/Tools.class.php'; | 31 | require_once './inc/poche/Tools.class.php'; |
31 | require_once './inc/poche/Url.class.php'; | 32 | require_once './inc/poche/Url.class.php'; |
32 | require_once './inc/3rdparty/class.messages.php'; | 33 | require_once './inc/3rdparty/class.messages.php'; |