mirror of
https://github.com/joomla-extensions/jedchecker.git
synced 2024-12-01 01:03:55 +00:00
fix missed to-upper-case for language keys
This commit is contained in:
parent
6ab463d324
commit
581f61efc9
@ -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]))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user