Commit 40b9bd13 authored by tbrehm's avatar tbrehm
Browse files

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

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