From: Alexander Ebert Date: Tue, 8 Jul 2014 13:31:47 +0000 (+0200) Subject: Fixed typo X-Git-Tag: 2.1.0_Alpha_1~602^2~9 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=f79983aac6847ac7180181c8643598a9cc7abf11;p=GitHub%2FWoltLab%2FWCF.git Fixed typo --- diff --git a/wcfsetup/install/files/js/WCF.js b/wcfsetup/install/files/js/WCF.js index 8dc72225b1..caaa4dfbb5 100755 --- a/wcfsetup/install/files/js/WCF.js +++ b/wcfsetup/install/files/js/WCF.js @@ -7716,7 +7716,7 @@ WCF.System.Event = { removeListener: function(identifier, action, uuid) { if (this._listeners[identifier] && this._listeners[identifier][action]) { for (var $i = 0; $i < this._listeners[identifier][action].length; $i++) { - if (this._listeners[identifier][action][$i].uuid = uuid) { + if (this._listeners[identifier][action][$i].uuid == uuid) { this._listeners[identifier][action].splice($i, 1); return true;