From 1b4069f01e8c09c8fc92a8204a063d1931a835db Mon Sep 17 00:00:00 2001 From: "Michael Kaufmann (d00p)" Date: Sun, 24 Oct 2010 16:57:17 +0000 Subject: [PATCH] - remove realtime-feature-stuff --- lib/functions/froxlor/function.CronjobFunctions.php | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/lib/functions/froxlor/function.CronjobFunctions.php b/lib/functions/froxlor/function.CronjobFunctions.php index 4d3973d2..3815619c 100644 --- a/lib/functions/froxlor/function.CronjobFunctions.php +++ b/lib/functions/froxlor/function.CronjobFunctions.php @@ -78,17 +78,6 @@ function includeCronjobs($debugHandler, $pathtophpfiles) } } - /** - * if we're on realtime and cron_tasks is not one - * of the jobs to run, we add it so the changes are being applied - */ - if ($settings['system']['realtime_port'] !== 0) { - $cron_file = makeCorrectFile($cron_path.'/cron_tasks.php'); - if (!in_array($cron_file, $jobs_to_run)) { - $jobs_to_run[] = $cron_file; - } - } - return $jobs_to_run; }