]> git.p6c8.net - jirafeau.git/commitdiff
lig/lang: clean error_log debug call, closes #30
authorJerome Jutteau <mojo@couak.net>
Fri, 24 Apr 2015 22:59:35 +0000 (00:59 +0200)
committerJerome Jutteau <mojo@couak.net>
Fri, 24 Apr 2015 23:01:10 +0000 (01:01 +0200)
Signed-off-by: Jerome Jutteau <mojo@couak.net>
lib/lang.php

index fba5dbed809895926efa5ea90b29bdd8caa88e1a..79387366c8f102372e094bf5d8a885667affa73d 100644 (file)
@@ -52,16 +52,14 @@ function t ($text)
 \r
     /* Decode JSON. */\r
     $trans = json_decode ($trans_j, true);\r
-    error_log(print_r($trans, true));\r
     if ($trans === NULL)\r
         return $text;\r
 \r
     /* Try to find translation. */\r
-    $translation = $trans[$text];\r
-    if (empty ($translation))\r
+    if (!array_key_exists ($text, $trans))\r
         return $text;\r
 \r
-    return $translation;\r
+    return $trans[$text];\r
 }\r
 \r
 ?>\r

patrick-canterino.de