We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02c2c6b commit 40b9bd1Copy full SHA for 40b9bd1
1 file changed
server/plugins-available/cron_plugin.inc.php
@@ -217,10 +217,10 @@ function _write_crontab() {
217
}
218
219
if($job['type'] == 'chrooted') {
220
- $chr_cron_content .= $command . "\t#{$job['domain']}\n";
+ $chr_cron_content .= $command . " #{$job['domain']}\n";
221
$chr_cmd_count++;
222
} else {
223
- $cron_content .= $command . "\t#{$job['domain']}\n";
+ $cron_content .= $command . " #{$job['domain']}\n";
224
$cmd_count++;
225
226
0 commit comments