From: Matthias Schmidt Date: Fri, 10 Jun 2016 15:51:20 +0000 (+0200) Subject: Do not call non-static method static in BackgroundQueueHandler X-Git-Tag: 3.0.0_Beta_1~1460^2~3 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=438b067be627f09e9efcd63ce53f5c35b3576eb8;p=GitHub%2FWoltLab%2FWCF.git Do not call non-static method static in BackgroundQueueHandler --- 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); } /**