[Fusionforge-commits] r10288 - in trunk/src: common/include etc etc/local.d

Thorsten Glaser mirabilos at libremir.placard.fr.eu.org
Tue Jul 27 14:37:11 CEST 2010


Author: mirabilos
Date: 2010-07-27 14:37:11 +0200 (Tue, 27 Jul 2010)
New Revision: 10288

Modified:
   trunk/src/common/include/extras-debug.php
   trunk/src/etc/config.ini-fhs
   trunk/src/etc/config.ini-opt
   trunk/src/etc/config.ini-usrlocal
   trunk/src/etc/local.d/24debug
Log:
fix an inverse logic error of mine and be more clear in the description
of $sysdebug_ignored


Modified: trunk/src/common/include/extras-debug.php
===================================================================
--- trunk/src/common/include/extras-debug.php	2010-07-26 07:26:52 UTC (rev 10287)
+++ trunk/src/common/include/extras-debug.php	2010-07-27 12:37:11 UTC (rev 10288)
@@ -7,7 +7,7 @@
 {
 	global $ffErrors, $sysdebug_ignored;
 
-	if ($sysdebug_ignored && error_reporting() == 0)
+	if (!$sysdebug_ignored && error_reporting() == 0)
 		/* prepended @ to statement => ignore */
 		return false;
 

Modified: trunk/src/etc/config.ini-fhs
===================================================================
--- trunk/src/etc/config.ini-fhs	2010-07-26 07:26:52 UTC (rev 10287)
+++ trunk/src/etc/config.ini-fhs	2010-07-27 12:37:11 UTC (rev 10288)
@@ -25,7 +25,7 @@
 
 ; enable the PHP Error Handler (default if sysdebug_enable)
 sysdebug_phphandler = true
-; also report ignored errors (@call)
+; also report (display) ignored errors, e.g. from @call
 sysdebug_ignored = false
 
 ; output validation (if sysdebug_enable)

Modified: trunk/src/etc/config.ini-opt
===================================================================
--- trunk/src/etc/config.ini-opt	2010-07-26 07:26:52 UTC (rev 10287)
+++ trunk/src/etc/config.ini-opt	2010-07-27 12:37:11 UTC (rev 10288)
@@ -25,7 +25,7 @@
 
 ; enable the PHP Error Handler (default if sysdebug_enable)
 sysdebug_phphandler = true
-; also report ignored errors (@call)
+; also report (display) ignored errors, e.g. from @call
 sysdebug_ignored = false
 
 ; output validation (if sysdebug_enable)

Modified: trunk/src/etc/config.ini-usrlocal
===================================================================
--- trunk/src/etc/config.ini-usrlocal	2010-07-26 07:26:52 UTC (rev 10287)
+++ trunk/src/etc/config.ini-usrlocal	2010-07-27 12:37:11 UTC (rev 10288)
@@ -25,7 +25,7 @@
 
 ; enable the PHP Error Handler (default if sysdebug_enable)
 sysdebug_phphandler = true
-; also report ignored errors (@call)
+; also report (display) ignored errors, e.g. from @call
 sysdebug_ignored = false
 
 ; output validation (if sysdebug_enable)

Modified: trunk/src/etc/local.d/24debug
===================================================================
--- trunk/src/etc/local.d/24debug	2010-07-26 07:26:52 UTC (rev 10287)
+++ trunk/src/etc/local.d/24debug	2010-07-27 12:37:11 UTC (rev 10288)
@@ -1,9 +1,9 @@
 /* debugging functionality; copy and enable if needed */
 
 // Define the type of installation
-//    * development: 
-//    * integration: 
-//    * staging: 
+//    * development:
+//    * integration:
+//    * staging:
 //    * production: normal mode.
 $sys_install_type = 'production';
 
@@ -17,7 +17,7 @@
 
 // enable the PHP Error Handler (default if sysdebug_enable)
 $sysdebug_phphandler = true;
-// also report ignored errors (@call)
+// also report (display) ignored errors, e.g. from @call
 $sysdebug_ignored = false;
 
 /* output validation (if sysdebug_enable) */




More information about the Fusionforge-commits mailing list