|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2000-07-18 07:03 UTC] hholzgra at cvs dot php dot net
[2000-07-25 12:18 UTC] hholzgra@php.net
[2000-08-30 00:50 UTC] cmv@php.net
[2000-08-30 07:05 UTC] waldschrott@php.net
[2000-08-30 07:14 UTC] waldschrott@php.net
[2000-08-30 10:30 UTC] cmv@php.net
[2000-08-30 14:06 UTC] cmv@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Mon Apr 20 17:00:02 2026 UTC |
I think it would be usefull to incorporate the following change in the next release. --- php-4.0.0-cp/ext/standard/html.c Thu May 18 21:34:35 2000 +++ php-4.0.0/ext/standard/html.c Wed Jun 28 10:06:12 2000 @@ -64,6 +64,10 @@ } else if (34 == *old) { memcpy (new + len, """, 6); len += 6; + } else if (39 == *old) { + /* single quote (') */ + memcpy (new + len, "'",6); + len += 6; } else if (60 == *old) { memcpy (new + len, "<", 4); len += 4; tnx :)