diff options
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1,6 +1,11 @@ <?php require_once 'config.php'; +if (CONFIG_DEBUG) { + error_reporting(E_ALL); +} else { + error_reporting(E_ALL & ~E_DEPRECATED); +} if (CONFIG_SQL_PASS === '%MYSQL_OPENSLX_PASS%') { Header('Content-Type: text/plain; charset=utf-8'); |