summaryrefslogtreecommitdiff
path: root/install.php
diff options
context:
space:
mode:
authorchris <chris@jalakai.co.uk>2006-07-28 11:04:04 +0200
committerchris <chris@jalakai.co.uk>2006-07-28 11:04:04 +0200
commit3545b2e00f01dc8e3b59ba4b2fc937f296b43bb5 (patch)
treeafbd99ceb3cc020fb68a66db84e9f6623e170863 /install.php
parent472483168f19453a8b390d406f1cc0602942cdbb (diff)
downloadrpg-3545b2e00f01dc8e3b59ba4b2fc937f296b43bb5.tar.gz
rpg-3545b2e00f01dc8e3b59ba4b2fc937f296b43bb5.tar.bz2
add error_reporting sanity
avoid many E_NOTICEs for those installations which run with E_ALL darcs-hash:20060728090404-9b6ab-0506bb5ad3af38456762bd578db3f230195505c1.gz
Diffstat (limited to 'install.php')
-rw-r--r--install.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/install.php b/install.php
index 59829f896..cc179f856 100644
--- a/install.php
+++ b/install.php
@@ -9,6 +9,10 @@ if(!defined('DOKU_INC')) define('DOKU_INC',realpath(dirname(__FILE__)).'/');
if(!defined('DOKU_CONF')) define('DOKU_CONF',DOKU_INC.'conf/');
if(!defined('DOKU_LOCAL')) define('DOKU_LOCAL',DOKU_INC.'conf/');
+// check for error reporting override or set error reporting to sane values
+if (!defined('DOKU_E_LEVEL')) { error_reporting(E_ALL ^ E_NOTICE); }
+else { error_reporting(DOKU_E_LEVEL); }
+
// kill magic quotes
if (get_magic_quotes_gpc() && !defined('MAGIC_QUOTES_STRIPPED')) {
if (!empty($_GET)) remove_magic_quotes($_GET);