|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-12-12 08:52 UTC] iliaa@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Thu Jan 01 06:00:01 2026 UTC |
There is a typo in ext/standard/html.c. The greek letter lambda is spelled lambda, not lamda. Currently, when php htmlentities() some string containing that letter, the web browser will not be able to display it properly. Here's the diff: *** html.c.buggy 2002-11-16 10:08:21.000000000 +0100 --- html.c 2002-12-12 15:23:59.000000000 +0100 *************** *** 130,136 **** /* 938 - 944 are not mapped */ NULL, NULL, NULL, NULL, NULL, NULL, NULL, "alpha", "beta", "gamma", "delta", "epsilon", "zeta", "eta", "theta", ! "iota", "kappa", "lamda", "mu", "nu", "x1", "omicron", "p1", "rho", "sigmaf", "sigma", "tau", "upsilon", "ph1", "ch1", "ps1", "omega", /* 970 - 976 are not mapped */ NULL, NULL, NULL, NULL, NULL, NULL, NULL, --- 130,136 ---- /* 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", /* 970 - 976 are not mapped */ NULL, NULL, NULL, NULL, NULL, NULL, NULL,