Skip to content

Commit 9b30b0b

Browse files
committed
1 parent 1f93c0d commit 9b30b0b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

install/dist/lib/fedora.lib.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -825,7 +825,7 @@ public function install_crontab()
825825
);
826826

827827
// remove existing ispconfig cronjobs, in case the syntax has changed
828-
foreach($cron_jobs as $key => $val) {
828+
foreach($existing_cron_jobs as $key => $val) {
829829
if(stristr($val,'getmail')) unset($existing_cron_jobs[$key]);
830830
}
831831

install/dist/lib/opensuse.lib.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -843,7 +843,7 @@ public function install_crontab()
843843
);
844844

845845
// remove existing ispconfig cronjobs, in case the syntax has changed
846-
foreach($cron_jobs as $key => $val) {
846+
foreach($existing_cron_jobs as $key => $val) {
847847
if(stristr($val,'getmail')) unset($existing_cron_jobs[$key]);
848848
}
849849

install/lib/installer_base.lib.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1110,7 +1110,7 @@ public function install_crontab()
11101110
);
11111111

11121112
// remove existing ispconfig cronjobs, in case the syntax has changed
1113-
foreach($cron_jobs as $key => $val) {
1113+
foreach($existing_cron_jobs as $key => $val) {
11141114
if(stristr($val,'getmail')) unset($existing_cron_jobs[$key]);
11151115
}
11161116

0 commit comments

Comments
 (0)