From: Marcel Werk Date: Mon, 25 Jul 2016 21:54:25 +0000 (+0200) Subject: Renamed variable ($fieldset -> $section) X-Git-Tag: 3.0.0_Beta_1~971 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=d5fa2ea954338325ea3ed8e5b2761a93dd2857fd;p=GitHub%2FWoltLab%2FWCF.git Renamed variable ($fieldset -> $section) --- diff --git a/wcfsetup/install/files/js/WCF.Message.js b/wcfsetup/install/files/js/WCF.Message.js index 7280c185a6..76777380cb 100644 --- a/wcfsetup/install/files/js/WCF.Message.js +++ b/wcfsetup/install/files/js/WCF.Message.js @@ -2064,16 +2064,16 @@ WCF.Message.Share.Content = Class.extend({ } // permalink (plain text) - var $fieldset = $('

').appendTo(this._dialog); - $('').attr('value', $link).appendTo($fieldset); + var $section = $('

').appendTo(this._dialog); + $('').attr('value', $link).appendTo($section); // permalink (BBCode) - var $fieldset = $('

').appendTo(this._dialog); - $('').attr('value', '[url=\'' + $link + '\']' + $title + '[/url]').appendTo($fieldset); + var $section = $('

').appendTo(this._dialog); + $('').attr('value', '[url=\'' + $link + '\']' + $title + '[/url]').appendTo($section); // permalink (HTML) - var $fieldset = $('

').appendTo(this._dialog); - $('').attr('value', '' + WCF.String.escapeHTML($title) + '').appendTo($fieldset); + var $section = $('

').appendTo(this._dialog); + $('').attr('value', '' + WCF.String.escapeHTML($title) + '').appendTo($section); this._cache[$key] = this._dialog.html();