diff options
Diffstat (limited to 'langs.inc.php')
-rw-r--r-- | langs.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/langs.inc.php b/langs.inc.php index 2f1561742..de956f9f6 100644 --- a/langs.inc.php +++ b/langs.inc.php @@ -197,7 +197,7 @@ function _lang_return($file) if ($C === '#') continue; if ($C === ';' && !empty($f[$k+1])) { - $strings[trim(substr($v, 1))] = trim($f[$k+1]); + $strings[trim(substr($v, 1))] = trim(str_replace('{ok}', '', $f[$k+1])); } } |