Skip to content

Commit

Permalink
show duplicate extension error in red
Browse files Browse the repository at this point in the history
  • Loading branch information
keywan-ghadami-oxid committed Mar 13, 2020
1 parent 71c41db commit 86cc283
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Core/InternalModule.php
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,8 @@ public function checkExtendedClasses()
foreach ($aMetadataExtend as $oxidClass => $moduleClass) {
$key_state = $iState = self::OK;
if (isset($moduleClassSeenBefore[$moduleClass])) {
$key_state = $iState = self::NEED_MANUAL_FIXED;
$iState = self::MODULE_FILE_NOT_FOUND;
$key_state = self::OK;
}
$moduleClassSeenBefore[$moduleClass] = 1;

Expand Down

0 comments on commit 86cc283

Please sign in to comment.