File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,10 @@ PHP NEWS
15
15
. Fixed bug #79589 (error:14095126:SSL routines:ssl3_read_n:unexpected eof
16
16
while reading). (Jakub Zelenka)
17
17
18
+ - Soap:
19
+ . Fixed bug GH-8578 (Error on wrong parameter on SoapHeader constructor).
20
+ (robertnisipeanu)
21
+
18
22
- SPL:
19
23
. Fixed bug GH-8235 (iterator_count() may run indefinitely). (cmb)
20
24
Original file line number Diff line number Diff line change @@ -577,7 +577,7 @@ PHP_METHOD(SoapHeader, __construct)
577
577
if (ZSTR_LEN (actor_str ) > 2 ) {
578
578
ZVAL_STR_COPY (Z_HEADER_ACTOR_P (this_ptr ), actor_str );
579
579
} else {
580
- zend_argument_value_error (2 , "must be longer than 2 characters" );
580
+ zend_argument_value_error (5 , "must be longer than 2 characters" );
581
581
RETURN_THROWS ();
582
582
}
583
583
} else if (!actor_is_null ) {
You can’t perform that action at this time.
0 commit comments