mirror of
https://github.com/cydrobolt/polr.git
synced 2024-11-12 21:22:28 +01:00
[debug] off: Disable error reporting completely; on: Enable E_ALL
This commit is contained in:
parent
1af17a2c2a
commit
b49461d608
@ -16,9 +16,13 @@
|
||||
*/
|
||||
@(require_once('config.php'));
|
||||
include('version.php');
|
||||
$debug = false; // Set to 1 in order to enable debug mode (shows sensitive database info), use for troubleshooting
|
||||
// Set to TRUE to enable debug mode (shows sensitive database info), use for troubleshooting only!
|
||||
// Also enables PHP error reporting level E_ALL
|
||||
$debug = FALSE;
|
||||
if ( $debug === FALSE ) {
|
||||
error_reporting(E_ERROR);
|
||||
error_reporting( 0 );
|
||||
} else {
|
||||
error_reporting( E_ALL );
|
||||
}
|
||||
$footer = "© Copyright 2014 $wsn. Powered by <a href='http://github.com/cydrobolt/polr'>Polr</a> ver $version build $reldate";
|
||||
$hidefooter = true; // Let's hide this for now
|
||||
|
Loading…
Reference in New Issue
Block a user