remove the brackets around the OTHER i18n output for non-translated strings :)

This commit is contained in:
james 2004-12-03 04:30:50 +00:00
parent e091cb2e51
commit 3a2d49c959

View File

@ -107,7 +107,7 @@ function i18n($str,$args=array())
{
$str=str_replace("%$x",$args[$x-1],$str);
}
return "<font color=red>($str)</font>";
return "<font color=red>$str</font>";
}
}
}