|
|
mantisbt/core error_api.php,1.48,1.49: msg#00013
|
Subject: |
mantisbt/core error_api.php,1.48,1.49 |
Update of /cvsroot/mantisbt/mantisbt/core
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21798
Modified Files:
error_api.php
Log Message:
Fixing #6432 in trunk: Error reporting got inadvertently broken.
Index: error_api.php
===================================================================
RCS file: /cvsroot/mantisbt/mantisbt/core/error_api.php,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -d -r1.48 -r1.49
--- error_api.php 29 Oct 2005 09:05:41 -0000 1.48
+++ error_api.php 26 Nov 2005 23:48:30 -0000 1.49
@@ -38,7 +38,7 @@
# check if errors were disabled with @ somewhere in this call
chain
# also suppress php 5 strict warnings
- if ( 0 == error_reporting() || $p_type = 2048) {
+ if ( 0 == error_reporting() || 2048 == $p_type ) {
return;
}
-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems? Stop! Download the new AJAX search engine that makes
searching your log files as easy as surfing the web. DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
|
| |