From: Alexander Ebert Date: Tue, 21 Jul 2015 12:17:25 +0000 (+0200) Subject: Fixed reference X-Git-Tag: 3.0.0_Beta_1~2171 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=4b7266c0a6cf4b0fa62585be8e0a7be483df0d1c;p=GitHub%2FWoltLab%2FWCF.git Fixed reference --- diff --git a/wcfsetup/install/files/js/WCF.User.js b/wcfsetup/install/files/js/WCF.User.js index dea229a6df..ae9becea3f 100644 --- a/wcfsetup/install/files/js/WCF.User.js +++ b/wcfsetup/install/files/js/WCF.User.js @@ -556,7 +556,7 @@ WCF.User.QuickLogin = { * Initializes the quick login box */ init: function() { - require(['UI/Dialog'], function(UIDialog) { + require(['Ui/Dialog'], function(UiDialog) { var loginForm = document.getElementById('loginForm'); var links = document.getElementsByClassName('loginLink'); @@ -566,7 +566,7 @@ WCF.User.QuickLogin = { loginForm.style.removeProperty('display'); - UIDialog.openStatic('loginForm', null, { + UiDialog.openStatic('loginForm', null, { title: WCF.Language.get('wcf.user.login') }); });