We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c56378b + 660250f commit 21cbdf6Copy full SHA for 21cbdf6
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
@@ -2687,7 +2687,7 @@ EOF
2687
done
2688
2689
echo "'[$]0' \\" >> $1
2690
- if test `expr -- [$]0 : "'.*"` = 0; then
+ if test `expr " [$]0" : " '.*"` = 0; then
2691
CONFIGURE_COMMAND="$CONFIGURE_COMMAND '[$]0'"
2692
else
2693
CONFIGURE_COMMAND="$CONFIGURE_COMMAND [$]0"
0 commit comments