Skip to content
Snippets Groups Projects
Commit 40b9bd13 authored by tbrehm's avatar tbrehm
Browse files

Fixed: FS#2449 - Appended \t#domain to cron jobs breaks certain commands

parent 02c2c6b7
No related branches found
No related tags found
No related merge requests found
...@@ -217,10 +217,10 @@ class cron_plugin { ...@@ -217,10 +217,10 @@ class cron_plugin {
} }
if($job['type'] == 'chrooted') { if($job['type'] == 'chrooted') {
$chr_cron_content .= $command . "\t#{$job['domain']}\n"; $chr_cron_content .= $command . " #{$job['domain']}\n";
$chr_cmd_count++; $chr_cmd_count++;
} else { } else {
$cron_content .= $command . "\t#{$job['domain']}\n"; $cron_content .= $command . " #{$job['domain']}\n";
$cmd_count++; $cmd_count++;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment