From: Alexander Ebert Date: Tue, 24 Jan 2012 16:46:48 +0000 (+0100) Subject: Fixed an issue X-Git-Tag: 2.0.0_Beta_1~1401 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=aad5fc845679fdfd22d45653a02910cac2cb0e40;p=GitHub%2FWoltLab%2FWCF.git Fixed an issue --- diff --git a/wcfsetup/install/files/js/WCF.js b/wcfsetup/install/files/js/WCF.js index 1a485d5da5..b78dbcf567 100644 --- a/wcfsetup/install/files/js/WCF.js +++ b/wcfsetup/install/files/js/WCF.js @@ -1864,7 +1864,9 @@ WCF.MultipleLanguageInput.prototype = { * Closes the language selection. */ _closeSelection: function() { - this._list.removeClass('open'); + if (this._list !== null) { + this._list.removeClass('open'); + } }, /**