We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9587053 commit 7ea3df9Copy full SHA for 7ea3df9
install/lib/installer_base.lib.php
@@ -611,7 +611,7 @@ public function install_ispconfig()
611
if ($dh = opendir($dir)) {
612
while (($file = readdir($dh)) !== false) {
613
if($file != '.' && $file != '..') {
614
- symlink($install_dir.'/server/mods-available/'.$file, $install_dir.'/server/mods-enabled/'.$file);
+ if(!is_link($install_dir.'/server/mods-enabled/'.$file)) symlink($install_dir.'/server/mods-available/'.$file, $install_dir.'/server/mods-enabled/'.$file);
615
}
616
617
closedir($dh);
0 commit comments