1
0
mirror of https://github.com/php/php-src.git synced 2026-04-26 01:18:19 +02:00

MFH: Fixed bug #27731 (error_reporting() inside @ block fails to set

error_reporting level).
This commit is contained in:
Ilia Alshanetsky
2004-03-29 00:52:20 +00:00
parent cb8e1f16ee
commit 89206cfca4
2 changed files with 12 additions and 0 deletions
+2
View File
@@ -2,6 +2,8 @@ PHP 4 NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
?? ??? 2004, Version 4.3.6
- Fixed bug #27732 (Fixed compilation bug inside php_sab_info.h). (Ilia)
- Fixed bug #27731 (error_reporting() inside @ block fails to set
error_reporting level). (Ilia)
- Fixed bug #27719 (mktime issues on and around DST changeover). (Rasmus)
- Fixed bug #27717 (Test Failures when compiled on 64-bit mode). (Ard, Derick)
- Fixed bug #27687 (Bug Adding Default Charset to 'text/*' Content-Type
+10
View File
@@ -0,0 +1,10 @@
--TEST--
Bug #27731 (error_reporing() call inside @ block does not work correctly)
--FILE--
<?php
error_reporting(E_ALL ^ E_NOTICE);
@error_reporting(0);
var_dump(error_reporting());
?>
--EXPECT--
int(0)