From: Derick Rethans Date: Sat, 17 Apr 2004 23:07:27 +0000 (+0000) Subject: - Fix for bug #28042 (greek letters in html to entitity mapping not correct) X-Git-Tag: php-4.3.7RC1~71 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=19db79ff1d222e2ad5ac86f72b4208ebc2aebc3b;p=php - Fix for bug #28042 (greek letters in html to entitity mapping not correct) --- diff --git a/NEWS b/NEWS index 61ec7cebfe..3920783663 100644 --- 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) diff --git a/ext/standard/html.c b/ext/standard/html.c index 66e408cb91..4e0d636021 100644 --- a/ext/standard/html.c +++ b/ext/standard/html.c @@ -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",