diff options
author | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-08-03 08:25:11 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-08-03 08:25:11 +0200 |
commit | 8cbb2a88024969f7efd90f8053f3b0805fa2f8fa (patch) | |
tree | 0bb5c7fb3adc752d9ea9a933b524bd08631ca11a /inc/config.php | |
parent | c67e13e04baab64bcc63fd0dca46125513250c44 (diff) | |
download | wallabag-8cbb2a88024969f7efd90f8053f3b0805fa2f8fa.tar.gz wallabag-8cbb2a88024969f7efd90f8053f3b0805fa2f8fa.tar.zst wallabag-8cbb2a88024969f7efd90f8053f3b0805fa2f8fa.zip |
twig implementation
Diffstat (limited to 'inc/config.php')
-rw-r--r-- | inc/config.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/inc/config.php b/inc/config.php index c4898cc9..b78147ab 100644 --- a/inc/config.php +++ b/inc/config.php | |||
@@ -10,7 +10,7 @@ | |||
10 | 10 | ||
11 | define ('POCHE_VERSION', '0.3'); | 11 | define ('POCHE_VERSION', '0.3'); |
12 | define ('MODE_DEMO', FALSE); | 12 | define ('MODE_DEMO', FALSE); |
13 | define ('DEBUG_POCHE', TRUE); | 13 | define ('DEBUG_POCHE', FALSE); |
14 | define ('CONVERT_LINKS_FOOTNOTES', FALSE); | 14 | define ('CONVERT_LINKS_FOOTNOTES', FALSE); |
15 | define ('REVERT_FORCED_PARAGRAPH_ELEMENTS', FALSE); | 15 | define ('REVERT_FORCED_PARAGRAPH_ELEMENTS', FALSE); |
16 | define ('DOWNLOAD_PICTURES', FALSE); | 16 | define ('DOWNLOAD_PICTURES', FALSE); |
@@ -21,7 +21,7 @@ define ('LOCALE', './locale'); | |||
21 | define ('CACHE', './cache'); | 21 | define ('CACHE', './cache'); |
22 | define ('LANG', 'fr_FR.UTF8'); | 22 | define ('LANG', 'fr_FR.UTF8'); |
23 | 23 | ||
24 | $storage_type = 'sqlite'; # sqlite or file | 24 | $storage_type = 'sqlite'; # sqlite, file |
25 | 25 | ||
26 | # /!\ Be careful if you change the lines below /!\ | 26 | # /!\ Be careful if you change the lines below /!\ |
27 | 27 | ||
@@ -75,4 +75,6 @@ if(!$store->isInstalled()) | |||
75 | } | 75 | } |
76 | 76 | ||
77 | $_SESSION['login'] = (isset ($_SESSION['login'])) ? $_SESSION['login'] : $store->getLogin(); | 77 | $_SESSION['login'] = (isset ($_SESSION['login'])) ? $_SESSION['login'] : $store->getLogin(); |
78 | $_SESSION['pass'] = (isset ($_SESSION['pass'])) ? $_SESSION['pass'] : $store->getPassword(); \ No newline at end of file | 78 | $_SESSION['pass'] = (isset ($_SESSION['pass'])) ? $_SESSION['pass'] : $store->getPassword(); |
79 | |||
80 | pocheTools::initPhp(); \ No newline at end of file | ||