diff options
author | Joe Orton <jorton@php.net> | 2005-05-11 12:43:07 +0000 |
---|---|---|
committer | Joe Orton <jorton@php.net> | 2005-05-11 12:43:07 +0000 |
commit | bd2e99ee50edf0635a605487372dbc69c98edf87 (patch) | |
tree | 27357e49e8009f9e07b8495278790f6061b76a14 | |
parent | 1f604371b09474774758556a3efb908fb659f8b7 (diff) | |
download | php-git-bd2e99ee50edf0635a605487372dbc69c98edf87.tar.gz |
- Fixed bug #29119 (html_decode_entities handling of U+0152-U+0192 range)
(merge error from 4.3)
-rw-r--r-- | ext/standard/html.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/standard/html.c b/ext/standard/html.c index a50f1fd4f3..387d922f9e 100644 --- a/ext/standard/html.c +++ b/ext/standard/html.c @@ -115,11 +115,11 @@ static entity_table_t ent_uni_338_402[] = { "Scaron", "scaron", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, - /* 376 (0x0178) + /* 376 (0x0178) */ "Yuml", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, - NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, */ - /* 400 (0x0190)*/ + NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, + /* 400 (0x0190) */ NULL, NULL, "fnof" }; |