diff options
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 | ||