diff options
Diffstat (limited to 'inc/poche/config.inc.php')
-rw-r--r-- | inc/poche/config.inc.php | 5 |
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); | |||
15 | define ('REVERT_FORCED_PARAGRAPH_ELEMENTS', FALSE); | 15 | define ('REVERT_FORCED_PARAGRAPH_ELEMENTS', FALSE); |
16 | define ('DOWNLOAD_PICTURES', FALSE); | 16 | define ('DOWNLOAD_PICTURES', FALSE); |
17 | define ('SHARE_TWITTER', TRUE); | 17 | define ('SHARE_TWITTER', TRUE); |
18 | define ('SHARE_MAIL', TRUE); | ||
18 | define ('SALT', '464v54gLLw928uz4zUBqkRJeiPY68zCX'); | 19 | define ('SALT', '464v54gLLw928uz4zUBqkRJeiPY68zCX'); |
19 | define ('ABS_PATH', 'assets/'); | 20 | define ('ABS_PATH', 'assets/'); |
20 | define ('TPL', './tpl'); | 21 | define ('TPL', './tpl'); |
@@ -34,9 +35,11 @@ require_once './inc/store/store.class.php'; | |||
34 | require_once './inc/store/' . $storage_type . '.class.php'; | 35 | require_once './inc/store/' . $storage_type . '.class.php'; |
35 | require_once './vendor/autoload.php'; | 36 | require_once './vendor/autoload.php'; |
36 | require_once './inc/3rdparty/simple_html_dom.php'; | 37 | require_once './inc/3rdparty/simple_html_dom.php'; |
38 | require_once './inc/3rdparty/class.messages.php'; | ||
37 | 39 | ||
38 | if (DOWNLOAD_PICTURES) { | 40 | if (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 | ||