From 48dbefcd7d9bdff57b77ee1a45ce8f8ec1463227 Mon Sep 17 00:00:00 2001 From: toyomoyo Date: Mon, 13 Feb 2006 02:44:37 +0000 Subject: [PATCH] fix for 4735 --- admin/lang.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/lang.php b/admin/lang.php index 761740f7ccf..718c6803596 100644 --- a/admin/lang.php +++ b/admin/lang.php @@ -119,7 +119,7 @@ $first = true; foreach ($enstring as $key => $value) { - if (empty($string[$key])) { + if (empty($string[$key]) and $string[$key] != "0") { //bug fix 4735 mits $value = htmlspecialchars($value); $value = str_replace("$"."a", "\\$"."a", $value); $value = str_replace("%%","%",$value);