[Openfirst-cvscommit] SF.net SVN: openfirst: [198] trunk/src/includes/functions/debug.php
Brought to you by:
xtimg
From: <ast...@us...> - 2006-06-23 05:06:08
|
Revision: 198 Author: astronouth7303 Date: 2006-06-22 22:06:03 -0700 (Thu, 22 Jun 2006) ViewCVS: http://svn.sourceforge.net/openfirst/?rev=198&view=rev Log Message: ----------- moved E_STRICT handling to earlier in the function. Modified Paths: -------------- trunk/src/includes/functions/debug.php Modified: trunk/src/includes/functions/debug.php =================================================================== --- trunk/src/includes/functions/debug.php 2006-06-23 05:04:28 UTC (rev 197) +++ trunk/src/includes/functions/debug.php 2006-06-23 05:06:03 UTC (rev 198) @@ -42,6 +42,8 @@ $ogFooter, $ogMailNotify, $ogMailFrom, $ogDB, $osType, $ogCurrentModule, $ogUser, $lastquery, $usingPHP5; global $NO_ADD_BUG; + if ($usingPHP5 && $errno == 2048) + return; // Don't handle E_STRICT $dberrno = $ogDB->errorNumber(); $dberror = $ogDB->errorString(); @@ -53,8 +55,6 @@ } } - if ($usingPHP5 && $errno == 2048) - return; // Don't handle E_STRICT $svn = explode(' ', trim(<<<ENDOFVERSION \$Id$ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |