summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2005-05-22 16:45:41 +0000
committerIlia Alshanetsky <iliaa@php.net>2005-05-22 16:45:41 +0000
commitadd1f2f783808411ecc1a4ca429d187dc426d964 (patch)
tree50ed446d91425c24246d09ddc560a9e15f76a06b
parentcd98638298bdbf54d147cf50069887f830c74a90 (diff)
downloadphp-git-add1f2f783808411ecc1a4ca429d187dc426d964.tar.gz
MFH: Fixed bug #29338 (unencoded spaces get ignored after certain tags).
-rw-r--r--NEWS5
-rw-r--r--tests/strings/004.phpt4
2 files changed, 5 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index 19c47da013..ccde9f621e 100644
--- a/NEWS
+++ b/NEWS
@@ -24,6 +24,8 @@ PHP 4 NEWS
- Fixed bug #32813 (parse_url() does not handle scheme-only urls properly). (Ilia)
- Fixed bug #32802 (General cookie overrides more specific cookie). (Ilia)
- Fixed bugs #32800, #32830 (ext/odbc: Problems with 64bit systems). (Jani)
+- Fixed bug #32773 (GMP fincs break when second parameter is 0) and made right
+ fix for GMP FPEs (Stas)
- Fixed bug #32742 (segmentation fault when the stream with a wrapper
is not closed). (Tony, Dmitry)
- Fixed bug #32730 (ext/crack.c fails to compile with cracklib-2.8.3). (Jani)
@@ -59,8 +61,7 @@ PHP 4 NEWS
- Fixed bug #29975 (memory leaks when set_error_handler() is used inside error
handler). (Tony)
- Fixed bug #29944 (Function defined in switch, crashes). (Dmitry)
-- Fixed bug #32773 (GMP fincs break when second parameter is 0) and made right
- fix for GMP FPEs (Stas)
+- Fixed bug #29338 (unencoded spaces get ignored after certain tags). (Ilia)
31 Mar 2005, Version 4.3.11
- Added Oracle Instant Client support. (cjbj at hotmail dot com, Tony)
diff --git a/tests/strings/004.phpt b/tests/strings/004.phpt
index 596928cdff..4a0895897d 100644
--- a/tests/strings/004.phpt
+++ b/tests/strings/004.phpt
@@ -17,8 +17,8 @@ echo "\n[$var]\n";
?>
--EXPECT--
<code><font color="#000000">
-&lt;br /&gt;<font color="#0000BB">&lt;?php </font><font color="#007700">echo </font><font color="#DD0000">"foo"</font><font color="#007700">; </font><font color="#0000BB">?&gt;</font>&lt;br /&gt;</font>
+&lt;br&nbsp;/&gt;<font color="#0000BB">&lt;?php&nbsp;</font><font color="#007700">echo&nbsp;</font><font color="#DD0000">"foo"</font><font color="#007700">;&nbsp;</font><font color="#0000BB">?&gt;</font>&lt;br&nbsp;/&gt;</font>
</code>
[<code><font color="#000000">
-&lt;br /&gt;<font color="#0000BB">&lt;?php </font><font color="#007700">echo </font><font color="#DD0000">"bar"</font><font color="#007700">; </font><font color="#0000BB">?&gt;</font>&lt;br /&gt;</font>
+&lt;br&nbsp;/&gt;<font color="#0000BB">&lt;?php&nbsp;</font><font color="#007700">echo&nbsp;</font><font color="#DD0000">"bar"</font><font color="#007700">;&nbsp;</font><font color="#0000BB">?&gt;</font>&lt;br&nbsp;/&gt;</font>
</code>]