]> git.p6c8.net - jirafeau_mojo42.git/commitdiff
[FIX] lang sanity check
authorJerome Jutteau <jerome@jutteau.fr>
Fri, 22 Nov 2019 22:45:55 +0000 (23:45 +0100)
committerJerome Jutteau <jerome@jutteau.fr>
Fri, 22 Nov 2019 22:55:37 +0000 (23:55 +0100)
fix #205

Signed-off-by: Jerome Jutteau <jerome@jutteau.fr>
lib/lang.php

index 48e247c0ab492f06b6a663ae6cda01b065cdf86a..3bdef6a5cff622680489acd3d9cc828cd3ae1a3c 100644 (file)
@@ -76,7 +76,7 @@ function t_in($string_id, $lang) {
 
 function t_get_raw_json($lang) {
     $filename = str_replace("-", "_", $lang);
-    if (preg_match('/[^A-Za-z_\w]/', $input)) {
+    if (preg_match('/[^A-Za-z_\w]/', $filename)) {
         return false;
     }
     $p = JIRAFEAU_ROOT . "lib/locales/$filename.json";

patrick-canterino.de