From d5fa2ea954338325ea3ed8e5b2761a93dd2857fd Mon Sep 17 00:00:00 2001 From: Marcel Werk Date: Mon, 25 Jul 2016 23:54:25 +0200 Subject: [PATCH] Renamed variable ($fieldset -> $section) --- wcfsetup/install/files/js/WCF.Message.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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(); -- 2.20.1