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:
parent
6ab463d324
commit
581f61efc9
@ -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]))
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user