* adjust the check action's logic.

This commit is contained in:
wangchunsheng
2011-03-12 09:25:11 +00:00
parent e936926efc
commit 3eabd6d5b9
+5 -1
View File
@@ -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";
}
}
}
}