From fee4706b879dcf6ef78d7fc4cbcb10390ae74e24 Mon Sep 17 00:00:00 2001 From: oesi Date: Tue, 17 Mar 2015 12:06:21 +0100 Subject: [PATCH] Fehler behoben bei dem Standalone Cronjobs nicht ausgefuehrt werden --- include/cronjob.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/cronjob.class.php b/include/cronjob.class.php index bde76744f..f558807fc 100644 --- a/include/cronjob.class.php +++ b/include/cronjob.class.php @@ -364,7 +364,7 @@ class cronjob extends basis_db public function execute() { $return = true; - if($this->standalone && isJobRunning()) + if($this->standalone && $this->isJobRunning()) { $this->errormsg = 'Job kann nicht ausgefuehrt werden, da noch ein anderer Job laeuft'; return false;