Skip to content

Commit f0ba363

Browse files
committed
Fix for false-positive notice that Magefan Extension is disabled.
1 parent 391156c commit f0ba363

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Block/Adminhtml/Linv.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public function getItems()
6363
'name' => $moduleName
6464
]);
6565
$module = $section->getModule(true);
66-
if ($module) {
66+
if ($module && !$section->isEnabled()) {
6767
$result[] = $module;
6868
}
6969

0 commit comments

Comments
 (0)