aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc/poche/config.inc.default.php
diff options
context:
space:
mode:
authorMaryana Rozhankivska <mariroz@mr.lviv.ua>2014-06-02 18:00:09 +0300
committerMaryana Rozhankivska <mariroz@mr.lviv.ua>2014-06-02 18:00:09 +0300
commit752cd4a8ef7bbc8ebd6c481ed890e0d8e46819a8 (patch)
treeccde49187dc34d35e5a5d8c1f172a3e0a1c9ade6 /inc/poche/config.inc.default.php
parent5d198e2b988e9bc44a6ecb4394600015c003003c (diff)
downloadwallabag-752cd4a8ef7bbc8ebd6c481ed890e0d8e46819a8.tar.gz
wallabag-752cd4a8ef7bbc8ebd6c481ed890e0d8e46819a8.tar.zst
wallabag-752cd4a8ef7bbc8ebd6c481ed890e0d8e46819a8.zip
error reporting level set in E_ALL & ~E_NOTICE by default, can be overriden in config
Diffstat (limited to 'inc/poche/config.inc.default.php')
-rwxr-xr-xinc/poche/config.inc.default.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/inc/poche/config.inc.default.php b/inc/poche/config.inc.default.php
index ffcd205d..95f727c6 100755
--- a/inc/poche/config.inc.default.php
+++ b/inc/poche/config.inc.default.php
@@ -30,6 +30,10 @@
30 30
31@define ('MODE_DEMO', FALSE); 31@define ('MODE_DEMO', FALSE);
32@define ('DEBUG_POCHE', FALSE); 32@define ('DEBUG_POCHE', FALSE);
33
34//default level of error reporting in application. Developers should override it in their config.inc.php: set to E_ALL.
35@define ('ERROR_REPORTING', E_ALL & ~E_NOTICE);
36
33@define ('DOWNLOAD_PICTURES', FALSE); # This can slow down the process of adding articles 37@define ('DOWNLOAD_PICTURES', FALSE); # This can slow down the process of adding articles
34@define ('REGENERATE_PICTURES_QUALITY', 75); 38@define ('REGENERATE_PICTURES_QUALITY', 75);
35@define ('CONVERT_LINKS_FOOTNOTES', FALSE); 39@define ('CONVERT_LINKS_FOOTNOTES', FALSE);