소스 검색

Revert #44

Scrutinizer-ci confirmed the detection of this was a false-positive, so we can remove this workaround.
They added it to their internal issue tracker.
rugk 10 년 전
부모
커밋
8038fde29d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lib/I18n.php

+ 1 - 1
lib/I18n.php

@@ -143,7 +143,7 @@ class I18n
 
         // check if the lang cookie was set and that language exists
         if (array_key_exists('lang', $_COOKIE) && in_array($_COOKIE['lang'], $availableLanguages)) {
-            $match = $availableLanguages[array_search($_COOKIE['lang'], $availableLanguages)];
+             $match = $_COOKIE['lang'];
         }
         // find a translation file matching the browsers language preferences
         else {