diff --git a/bin/check.php b/bin/check.php index 6116cbdb16..c82e785b1b 100755 --- a/bin/check.php +++ b/bin/check.php @@ -31,7 +31,11 @@ foreach(glob($moduleRoot . '*') as $modulePath) $methodName = $method->name; if(!isset($lang->resource->$moduleName->$methodName)) { - echo $moduleName . "\t" . $methodName . " not in the list. \n"; + $methodName = strtolower($methodName); + if(!isset($lang->resource->$moduleName->$methodName)) + { + echo $moduleName . "\t" . $methodName . " not in the list. \n"; + } } } }