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 9437dcd + 21cbdf6 commit 0f15a03Copy full SHA for 0f15a03
NEWS
@@ -5,6 +5,7 @@ PHP NEWS
5
- Core:
6
. Fixed bug #74780 (parse_url() borken when query string contains colon).
7
(jhdxr)
8
+ . Fixed bug #74761 (Unary operator expected error on some systems). (petk)
9
10
- SPL:
11
. Fixed bug #73471 (PHP freezes with AppendIterator). (jhdxr)
acinclude.m4
@@ -2676,7 +2676,7 @@ EOF
2676
done
2677
2678
echo "'[$]0' \\" >> $1
2679
- if test `expr -- [$]0 : "'.*"` = 0; then
+ if test `expr " [$]0" : " '.*"` = 0; then
2680
CONFIGURE_COMMAND="$CONFIGURE_COMMAND '[$]0'"
2681
else
2682
CONFIGURE_COMMAND="$CONFIGURE_COMMAND [$]0"
0 commit comments