33
2
mirror of https://github.com/joomla-extensions/jedchecker.git synced 2024-11-17 02:25:10 +00:00

fix missed to-upper-case for language keys

This commit is contained in:
Denis Ryabov 2021-05-10 22:01:37 +03:00
parent 6ab463d324
commit 581f61efc9

View File

@ -402,7 +402,7 @@ class JedcheckerRulesLanguage extends JEDcheckerRule
// Check all keys exist in INI files // Check all keys exist in INI files
foreach ($matches[2] as $match) foreach ($matches[2] as $match)
{ {
$key = $match[0]; $key = strtoupper($match[0]);
if (!isset($this->langKeys[$key])) if (!isset($this->langKeys[$key]))
{ {