aboutsummaryrefslogtreecommitdiffstats
path: root/langs.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'langs.inc.php')
-rw-r--r--langs.inc.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/langs.inc.php b/langs.inc.php
index 25545da9e..85ee95c95 100644
--- a/langs.inc.php
+++ b/langs.inc.php
@@ -163,7 +163,7 @@ function _d($s = null, $opt = null) {
global $_t;
}
- return ($s == '' ? '---' : (array_key_exists($s, $_t) ? $_t[$s] : $s));
+ return trim(str_replace('{ok}', '', ($s == '' ? '---' : (array_key_exists($s, $_t) ? $_t[$s] : $s))));
}
/**
@@ -197,7 +197,7 @@ function _lang_return($file)
if ($C === '#') continue;
if ($C === ';' && !empty($f[$k+1])) {
- $strings[trim(substr($v, 1))] = trim(str_replace('{ok}', '', $f[$k+1]));
+ $strings[trim(substr($v, 1))] = trim($f[$k+1]);
}
}