]> granicus.if.org Git - php/commitdiff
- Fix for bug #28042 (greek letters in html to entitity mapping not correct)
authorDerick Rethans <derick@php.net>
Sat, 17 Apr 2004 23:07:27 +0000 (23:07 +0000)
committerDerick Rethans <derick@php.net>
Sat, 17 Apr 2004 23:07:27 +0000 (23:07 +0000)
NEWS
ext/standard/html.c

diff --git a/NEWS b/NEWS
index 61ec7cebfe6a2071414acdf5141623bd1c8560c3..3920783663cae5ecfa60af57fe4a0a1e6ff65bb4 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,8 @@
 PHP 4                                                                      NEWS
 |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
 ?? ??? 2004, Version 4.3.7
+- Fixed bug #28042 (greek letters in html to entitity mapping not correct).
+  (Derick)
 - Fixed bug #27995 (imagefilltoborder() stops the fill process prematurely).
   (Ilia)
 
index 66e408cb91306a34364f411f637a8ac0a3a8b3f5..4e0d636021af799e6cd26eaf42a7c0f6d417d547 100644 (file)
@@ -136,13 +136,13 @@ static entity_table_t ent_uni_spacing[] = {
 static entity_table_t ent_uni_greek[] = {
        /* 913 */
        "Alpha", "Beta", "Gamma", "Delta", "Epsilon", "Zeta", "Eta", "Theta",
-       "Iota", "Kappa", "Lambda", "Mu", "Nu", "X1", "Omicron", "P1", "Rho",
-       NULL, "Sigma", "Tau", "Upsilon", "Ph1", "Ch1", "Ps1", "Omega",
+       "Iota", "Kappa", "Lambda", "Mu", "Nu", "Xi", "Omicron", "Pi", "Rho",
+       NULL, "Sigma", "Tau", "Upsilon", "Phi", "Chi", "Psi", "Omega",
        /* 938 - 944 are not mapped */
        NULL, NULL, NULL, NULL, NULL, NULL, NULL,
        "alpha", "beta", "gamma", "delta", "epsilon", "zeta", "eta", "theta",
-       "iota", "kappa", "lambda", "mu", "nu", "x1", "omicron", "p1", "rho",
-       "sigmaf", "sigma", "tau", "upsilon", "ph1", "ch1", "ps1", "omega",
+       "iota", "kappa", "lambda", "mu", "nu", "xi", "omicron", "pi", "rho",
+       "sigmaf", "sigma", "tau", "upsilon", "phi", "chi", "psi", "omega",
        /* 970 - 976 are not mapped */
        NULL, NULL, NULL, NULL, NULL, NULL, NULL,
        "thetasym", "ups1h",