From: Tim Düsterhus Date: Thu, 4 Aug 2016 21:35:39 +0000 (+0200) Subject: Fix typo in BackgroundQueueHandler X-Git-Tag: 3.0.0_Beta_1~803 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=078887ceb07a629dc99163e7efc4d299917e3693;p=GitHub%2FWoltLab%2FWCF.git Fix typo 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 871a5223fc..8268495eee 100644 --- a/wcfsetup/install/files/lib/system/background/BackgroundQueueHandler.class.php +++ b/wcfsetup/install/files/lib/system/background/BackgroundQueueHandler.class.php @@ -170,7 +170,7 @@ class BackgroundQueueHandler extends SingletonFactory { if ($statement->getAffectedRows() != 1) { // somebody stole the job // this cannot happen unless MySQL violates it's contract to lock the row - // -> silently ignore, there will be plenty of other oppurtunities to perform a job + // -> silently ignore, there will be plenty of other opportunities to perform a job return; } WCF::getDB()->commitTransaction();