From 438b067be627f09e9efcd63ce53f5c35b3576eb8 Mon Sep 17 00:00:00 2001 From: Matthias Schmidt Date: Fri, 10 Jun 2016 17:51:20 +0200 Subject: [PATCH] Do not call non-static method static in BackgroundQueueHandler --- .../lib/system/background/BackgroundQueueHandler.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wcfsetup/install/files/lib/system/background/BackgroundQueueHandler.class.php b/wcfsetup/install/files/lib/system/background/BackgroundQueueHandler.class.php index e34a224cd7..c07bf82fbb 100644 --- a/wcfsetup/install/files/lib/system/background/BackgroundQueueHandler.class.php +++ b/wcfsetup/install/files/lib/system/background/BackgroundQueueHandler.class.php @@ -39,7 +39,7 @@ class BackgroundQueueHandler extends SingletonFactory { * @see \wcf\system\background\BackgroundQueueHandler::enqueueAt() */ public function enqueueIn($jobs, $time = 0) { - self::enqueueAt($jobs, TIME_NOW + $time); + $this->enqueueAt($jobs, TIME_NOW + $time); } /** -- 2.20.1