aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc/poche/config.inc.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas.loeuillet@gmail.com>2013-08-06 14:18:03 +0200
committerNicolas LÅ“uillet <nicolas.loeuillet@gmail.com>2013-08-06 14:18:03 +0200
commit7ce7ec4c942e0a3567858ad0ec8e654000b49a3f (patch)
tree8de9df7ff2ddfe980f8247e2305ad4b1b27194fa /inc/poche/config.inc.php
parent17a9cb96088d4634deca29c8be9f90d94c0f6473 (diff)
downloadwallabag-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.php3
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/');
21define ('TPL', './tpl'); 21define ('TPL', './tpl');
22define ('LOCALE', './locale'); 22define ('LOCALE', './locale');
23define ('CACHE', './cache'); 23define ('CACHE', './cache');
24define ('LANG', 'fr_FR.UTF8'); 24define ('LANG', 'en_EN.UTF8');
25define ('PAGINATION', '10'); 25define ('PAGINATION', '10');
26define ('THEME', 'light'); 26define ('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 /!\
30require_once './inc/poche/User.class.php';
30require_once './inc/poche/Tools.class.php'; 31require_once './inc/poche/Tools.class.php';
31require_once './inc/poche/Url.class.php'; 32require_once './inc/poche/Url.class.php';
32require_once './inc/3rdparty/class.messages.php'; 33require_once './inc/3rdparty/class.messages.php';