From: Marcel Werk Date: Fri, 14 Jun 2013 23:24:08 +0000 (+0200) Subject: Small optimization X-Git-Tag: 2.0.0_Beta_4~40 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=cafc0b6914f0338f2a98271b5c1b3c869920dfef;p=GitHub%2FWoltLab%2FWCF.git Small optimization --- diff --git a/wcfsetup/install/files/acp/js/WCF.ACP.js b/wcfsetup/install/files/acp/js/WCF.ACP.js index 1cc40b4291..c1ac6408a8 100644 --- a/wcfsetup/install/files/acp/js/WCF.ACP.js +++ b/wcfsetup/install/files/acp/js/WCF.ACP.js @@ -198,13 +198,13 @@ WCF.ACP.Cronjob.LogList = Class.extend({ var $errorBadge = $(event.currentTarget); if (this._dialog === null) { - this._dialog = $('
' + $errorBadge.next().html() + '
').hide().appendTo(document.body); + this._dialog = $('
' + $errorBadge.next().html() + '
').hide().appendTo(document.body); this._dialog.wcfDialog({ title: WCF.Language.get('wcf.acp.cronjob.log.error.details') }); } else { - this._dialog.html($errorBadge.next().html()); + this._dialog.html('
' + $errorBadge.next().html() + '
'); this._dialog.wcfDialog('open'); } }