Add wrapper to show config errors even with no error reporting (RFE #1447173).

This commit is contained in:
Michal Čihař
2006-03-16 22:15:07 +00:00
parent 2741f16ecb
commit 7b48016c66
3 changed files with 21 additions and 3 deletions

12
show_config_errors.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
/* $Id$ */
// vim: expandtab sw=4 ts=4 sts=4:
/* Simple wrapper just to enable error reporting and include config */
echo "Starting to parse config file...\n";
error_reporting(E_ALL);
require('./config.inc.php');
?>