From 3a2d49c959e54f8d033710f1f473208f7b505cfa Mon Sep 17 00:00:00 2001 From: james Date: Fri, 3 Dec 2004 04:30:50 +0000 Subject: [PATCH] remove the brackets around the OTHER i18n output for 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 46da522..846b002 100644 --- a/common.inc.php +++ b/common.inc.php @@ -107,7 +107,7 @@ function i18n($str,$args=array()) { $str=str_replace("%$x",$args[$x-1],$str); } - return "($str)"; + return "$str"; } } }