From 1509632d22a6202b548f1959aea5822403a87f27 Mon Sep 17 00:00:00 2001 From: james Date: Thu, 2 Dec 2004 17:40:37 +0000 Subject: [PATCH] remove the brackets from non-translated strings --- common.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.inc.php b/common.inc.php index 699c0dee..b573fb51 100644 --- a/common.inc.php +++ b/common.inc.php @@ -96,7 +96,7 @@ function i18n($str,$args=array()) { $str=str_replace("%$x",$args[$x-1],$str); } - return "($str)"; + return "$str"; } }