diff --git a/common.inc.php b/common.inc.php
index 113b595c..699c0dee 100644
--- a/common.inc.php
+++ b/common.inc.php
@@ -60,7 +60,7 @@ if($_GET['switchlanguage'])
}
-function i18n($str)
+function i18n($str,$args=array())
{
if(!$str)
return "";
@@ -68,16 +68,34 @@ function i18n($str)
if($_SESSION['lang'])
{
if($_SESSION['lang']=="en")
+ {
+ for($x=1;$x<=count($args);$x++)
+ {
+ $str=str_replace("%$x",$args[$x-1],$str);
+ }
return $str;
+ }
else
{
$q=mysql_query("SELECT * FROM translations WHERE lang='".$_SESSION['lang']."' AND strmd5='".md5($str)."'");
if($r=@mysql_fetch_object($q))
{
if($r->val)
- return $r->val;
+ {
+ $ret=$r->val;
+
+ for($x=1;$x<=count($args);$x++)
+ {
+ $ret=str_replace("%$x",$args[$x-1],$ret);
+ }
+ return $ret;
+ }
else
{
+ for($x=1;$x<=count($args);$x++)
+ {
+ $str=str_replace("%$x",$args[$x-1],$str);
+ }
return "($str)";
}
@@ -85,7 +103,10 @@ function i18n($str)
else
{
mysql_query("INSERT INTO translations (lang,strmd5,str) VALUES ('".$_SESSION['lang']."','".md5($str)."','".mysql_escape_string($str)."')");
- echo mysql_error();
+ for($x=1;$x<=count($args);$x++)
+ {
+ $str=str_replace("%$x",$args[$x-1],$str);
+ }
return "($str)";
}
}
@@ -97,15 +118,31 @@ function i18n($str)
}
}
+function error($str)
+{
+ return $str."
";
+}
+
+function notice($str)
+{
+ return $str."
";
+}
+
+$HEADER_SENT=false;
function send_header($title="")
{
+ global $HEADER_SENT;
global $config;
+
+ //do this so we can use send_header() a little more loosly and not worry about it being sent more than once.
+ if($HEADER_SENT) return;
+ else $HEADER_SENT=true;
?>
-