enable DAEMON_EXTENDED_DEBUG when envvar DAEMON_XDEBUG is set
This commit is contained in:
parent
39a5249904
commit
010c16f184
|
@ -15,7 +15,7 @@
|
|||
|
||||
require_once "version.php";
|
||||
|
||||
if (strpos(VERSION, ".99") !== false) {
|
||||
if (strpos(VERSION, ".99") !== false || getenv('DAEMON_XDEBUG')) {
|
||||
define('DAEMON_EXTENDED_DEBUG', true);
|
||||
}
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
|
||||
require_once "version.php";
|
||||
|
||||
if (strpos(VERSION, ".99") !== false) {
|
||||
if (strpos(VERSION, ".99") !== false || getenv('DAEMON_XDEBUG')) {
|
||||
define('DAEMON_EXTENDED_DEBUG', true);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue