31
2
mirror of https://github.com/joomla-extensions/jedchecker.git synced 2024-09-29 05:29:08 +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
foreach ($matches[2] as $match)
{
$key = $match[0];
$key = strtoupper($match[0]);
if (!isset($this->langKeys[$key]))
{