Warn users not to enable DEBUG in productive environments
The debug mode should not be enabled in productive environments and is also a security risk since some apps outputs unsanitized debug data to the template.
This commit is contained in:
parent
d21946fdce
commit
0d6a577481
|
@ -1,5 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/* Only enable this for local development and not in productive environments */
|
||||||
|
/* This will disable the minifier and outputs some additional debug informations */
|
||||||
define("DEBUG", true);
|
define("DEBUG", true);
|
||||||
|
|
||||||
$CONFIG = array(
|
$CONFIG = array(
|
||||||
|
|
Loading…
Reference in New Issue