From: Gordon P. H. <gph...@us...> - 2004-08-10 23:03:50
|
Update of /cvsroot/phpliteadmin/phpLiteAdmin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21799 Modified Files: config.php5 Log Message: - Leave the error_reporting() settings as they are. If there's an error, fix it, don't cover it up. Index: config.php5 =================================================================== RCS file: /cvsroot/phpliteadmin/phpLiteAdmin/config.php5,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- config.php5 9 Aug 2004 22:14:42 -0000 1.2 +++ config.php5 10 Aug 2004 23:03:41 -0000 1.3 @@ -10,7 +10,7 @@ * Configuration and customization settings */ -//error_reporting( E_ALL | E_STRICT ); // DO NOT CHANGE THIS! +error_reporting( E_ALL | E_STRICT ); // DO NOT CHANGE THIS! @ini_set( 'display_errors', '1' ); // DO NOT CHANGE THIS! // Placeholder for customization options |