This repository was archived by the owner on May 27, 2023. It is now read-only.

Description
Modulename detection is not working correctly when Modules like these exists:
N98_Catalog
N98_CatalogGrouped
foreach ($this->getConfig()->getNode('modules')->children() as $module) {
if (strpos($className, $module->getName()) === 0) {
$moduleName = $module->getName();
break;
}
}
By using strpos, the function will always return N98_Catalog.