We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5fb5a73 + 9db3eda commit 0c0ecf0Copy full SHA for 0c0ecf0
NEWS
@@ -15,6 +15,7 @@ PHP NEWS
15
(cmb)
16
. Fixed bug #80173 (Using return value of zend_assign_to_variable() is not
17
safe). (Nikita)
18
+ . Fixed bug #73226 (--r[fcez] always return zero exit code). (cmb)
19
20
- Intl:
21
. Fixed bug #72809 (Locale::lookup() wrong result with canonicalize option).
sapi/cli/php_cli.c
@@ -1064,6 +1064,7 @@ static int do_cli(int argc, char **argv) /* {{{ */
1064
zend_printf("Exception: %s\n", Z_STRVAL_P(msg));
1065
zend_object_release(EG(exception));
1066
EG(exception) = NULL;
1067
+ exit_status = 1;
1068
} else {
1069
zend_print_zval(&ref, 0);
1070
zend_write("\n", 1);
0 commit comments