Skip to content

Commit 2db33c1

Browse files
authored
Fix switch case for TinyMCE version handling
1 parent 2960a1b commit 2db33c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/OpenMage/ComposerPlugin/Copy/Plugins/TinyMce.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public function processComposerInstall(): void
7575
$versionMain = (int) array_first($versionParts);
7676

7777
switch ($versionMain) {
78-
case $versionMain <= 6:
78+
case 6:
7979
$this->removedTinyMceLicenseFiles();
8080
break;
8181
default:

0 commit comments

Comments
 (0)