Fixed Issue #79

This commit is contained in:
Riccardo Bicelli 2021-07-08 21:39:18 +02:00
parent bb50993763
commit 2e3873a265

View File

@ -197,7 +197,7 @@ function pfz_speedtest_cron(){
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);
install_cron_job($command, $enable, $minute = "*/15", "*", "*", "*", "*", "root", true);
}