aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc/poche/config.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/poche/config.inc.php')
-rw-r--r--inc/poche/config.inc.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/inc/poche/config.inc.php b/inc/poche/config.inc.php
index 27be1857..d49df190 100644
--- a/inc/poche/config.inc.php
+++ b/inc/poche/config.inc.php
@@ -15,6 +15,7 @@ define ('CONVERT_LINKS_FOOTNOTES', FALSE);
15define ('REVERT_FORCED_PARAGRAPH_ELEMENTS', FALSE); 15define ('REVERT_FORCED_PARAGRAPH_ELEMENTS', FALSE);
16define ('DOWNLOAD_PICTURES', FALSE); 16define ('DOWNLOAD_PICTURES', FALSE);
17define ('SHARE_TWITTER', TRUE); 17define ('SHARE_TWITTER', TRUE);
18define ('SHARE_MAIL', TRUE);
18define ('SALT', '464v54gLLw928uz4zUBqkRJeiPY68zCX'); 19define ('SALT', '464v54gLLw928uz4zUBqkRJeiPY68zCX');
19define ('ABS_PATH', 'assets/'); 20define ('ABS_PATH', 'assets/');
20define ('TPL', './tpl'); 21define ('TPL', './tpl');
@@ -34,9 +35,11 @@ require_once './inc/store/store.class.php';
34require_once './inc/store/' . $storage_type . '.class.php'; 35require_once './inc/store/' . $storage_type . '.class.php';
35require_once './vendor/autoload.php'; 36require_once './vendor/autoload.php';
36require_once './inc/3rdparty/simple_html_dom.php'; 37require_once './inc/3rdparty/simple_html_dom.php';
38require_once './inc/3rdparty/class.messages.php';
37 39
38if (DOWNLOAD_PICTURES) { 40if (DOWNLOAD_PICTURES) {
39 require_once './inc/poche/pochePictures.php'; 41 require_once './inc/poche/pochePictures.php';
40} 42}
41 43
42$poche = new Poche($storage_type); \ No newline at end of file 44$poche = new Poche($storage_type);
45$poche->messages = new Messages(); \ No newline at end of file