From: Jerome Jutteau Date: Fri, 24 Apr 2015 22:59:35 +0000 (+0200) Subject: lig/lang: clean error_log debug call, closes #30 X-Git-Tag: 1.1~105 X-Git-Url: https://git.p6c8.net/jirafeau_project.git/commitdiff_plain/3074ed828fda241ca6e26f9f25bae7f4ce13aa56?hp=6f418cf4a58260714dc17c57e2979feef67e7458 lig/lang: clean error_log debug call, closes #30 Signed-off-by: Jerome Jutteau --- diff --git a/lib/lang.php b/lib/lang.php index fba5dbe..7938736 100644 --- a/lib/lang.php +++ b/lib/lang.php @@ -52,16 +52,14 @@ function t ($text) /* Decode JSON. */ $trans = json_decode ($trans_j, true); - error_log(print_r($trans, true)); if ($trans === NULL) return $text; /* Try to find translation. */ - $translation = $trans[$text]; - if (empty ($translation)) + if (!array_key_exists ($text, $trans)) return $text; - return $translation; + return $trans[$text]; } ?>