Skip to content
Code-Schnipsel Gruppen Projekte
Commit 8b643edd erstellt von Henning Leutz's avatar Henning Leutz :martial_arts_uniform:
Dateien durchsuchen

fix: kopieren von installierten ckeditor plugins wird nun richtig beim setup durchgeführt

Übergeordneter 2809dfae
No related branches found
No related tags found
Keine zugehörigen Merge Requests gefunden
......@@ -16,7 +16,6 @@ use QUI\Package\Package;
*/
class EventHandler
{
/**
* @param Package $Package
*/
......
......@@ -154,7 +154,7 @@ class Manager
}
$pluginName = $entry;
// Special case, because gitlab gets confused with the dirctory named "codeTag"
// Special case, because gitlab gets confused with the directory named "codeTag"
if ($entry == "code") {
$pluginName = "codeTag";
}
......@@ -165,16 +165,11 @@ class Manager
$targetDir = $this->activePluginDir;
}
if (!is_dir($srcDir."/".$entry)) {
continue;
}
if (is_dir($this->installedPluginDir."/".$pluginName)) {
continue;
}
if (is_dir($this->activePluginDir."/".$pluginName)) {
if (!is_dir($this->activePluginDir."/".$pluginName)) {
continue;
}
......@@ -182,6 +177,9 @@ class Manager
continue;
}
// vorher löschen, da sonst nicht kopiert werden kann
QUI::getTemp()->moveToTemp($targetDir."/".$pluginName);
$this->copyDir(
$srcDir."/".$entry,
$targetDir."/".$pluginName
......
0% oder .
You are about to add 0 people to the discussion. Proceed with caution.
Bearbeitung dieser Nachricht zuerst beenden!
Bitte registrieren oder zum Kommentieren