From 2df113a0030f04fbccb5dc2fd6fbaa121c406c7c Mon Sep 17 00:00:00 2001 From: Sharkiller Date: Sat, 19 Apr 2014 21:38:04 -0300 Subject: [PATCH] Fix pt-BR #28 --- inc/lang/{pt-BR.php => pt-br.php} | 0 inc/language.class.php | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename inc/lang/{pt-BR.php => pt-br.php} (100%) diff --git a/inc/lang/pt-BR.php b/inc/lang/pt-br.php similarity index 100% rename from inc/lang/pt-BR.php rename to inc/lang/pt-br.php diff --git a/inc/language.class.php b/inc/language.class.php index 41226f0..20dfad2 100644 --- a/inc/language.class.php +++ b/inc/language.class.php @@ -46,7 +46,7 @@ foreach(scandir($this->getLanguageDirectory()) as $language) { $language = $this->formatLanguageName($language); if($this->isValidLanguage($language)) { - $languages[] = strtolower($language); + $languages[] = $language; } }