Fixed Issue #79

This commit is contained in:
Riccardo Bicelli 2021-07-08 21:39:18 +02:00
parent bb50993763
commit 2e3873a265
1 changed files with 2 additions and 2 deletions

View File

@ -196,8 +196,8 @@ function pfz_speedtest_cron(){
//installs a cron job for speedtests
function pfz_speedtest_cron_install($enable=true){
//Install Cron Job
$command = "/usr/local/bin/php " . __FILE__ . " speedtest_cron";
install_cron_job($command, $enable, $minute = "*/15", "*", "*", "*", "*", "root", false);
$command = "/usr/local/bin/php " . __FILE__ . " speedtest_cron";
install_cron_job($command, $enable, $minute = "*/15", "*", "*", "*", "*", "root", true);
}