]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Tue, 28 Nov 2017 21:58:21 +0000 (22:58 +0100)
committerRoland Häder <roland@mxchange.org>
Sun, 29 Mar 2020 22:21:48 +0000 (00:21 +0200)
- disable all warnings and errors, generally bad, but here neccessarry until
  this whole thing has been rewritten to something better
- also disable some interfering settings from Xdebug

Signed-off-by: Roland Häder <roland@mxchange.org>
scripts/getvaliddaemons.php

index 61fe9b638ac2ebaff66eb290a28d4d11a91831a8..adcae612a8ed2d12ba374496972ee0b6ee672e54 100755 (executable)
@@ -35,7 +35,18 @@ by the startdaemons script
 ENDOFHELP;
 
 // No unnecessary error reporting to avoid invalid daemon names
-error_reporting(E_ALL & ~E_STRICT & ~E_NOTICE);
+error_reporting(0);
+ini_set('error_reporting', 0);
+
+// Is xdebug loaded?
+if (extension_loaded('xdebug')) {
+       // Disable even more errors as they may cause unwanted content here
+       ini_set('xdebug.show_error_trace', FALSE);
+       ini_set('xdebug.show_exception_trace', FALSE);
+       ini_set('xdebug.force_display_errors', FALSE);
+       ini_set('xdebug.force_error_reporting', FALSE);
+       ini_set('xdebug.scream', FALSE);
+}
 
 require_once INSTALLDIR.'/scripts/commandline.inc';