From: Alexander Ebert Date: Wed, 19 Oct 2016 09:45:28 +0000 (+0200) Subject: Fixed quote link editing X-Git-Tag: 3.0.0_Beta_3~14 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=139f17ad48a33954829e2e644960d4e2841799b1;p=GitHub%2FWoltLab%2FWCF.git Fixed quote link editing --- diff --git a/wcfsetup/install/files/js/WoltLabSuite/Core/Ui/Redactor/Quote.js b/wcfsetup/install/files/js/WoltLabSuite/Core/Ui/Redactor/Quote.js index 534790b522..114ed2def2 100644 --- a/wcfsetup/install/files/js/WoltLabSuite/Core/Ui/Redactor/Quote.js +++ b/wcfsetup/install/files/js/WoltLabSuite/Core/Ui/Redactor/Quote.js @@ -188,7 +188,7 @@ define(['Core', 'EventHandler', 'EventKey', 'Language', 'StringUtil', 'Dom/Util' elData(this._quote, 'author', elById(id + '-author').value); // set url - elData(this._quote, 'url', url); + elData(this._quote, 'link', url); this._setTitle(this._quote); this._editor.caret.after(this._quote); @@ -254,7 +254,7 @@ define(['Core', 'EventHandler', 'EventKey', 'Language', 'StringUtil', 'Dom/Util' onShow: (function() { elById(idAuthor).value = elData(this._quote, 'author'); - elById(idUrl).value = elData(this._quote, 'url'); + elById(idUrl).value = elData(this._quote, 'link'); }).bind(this), title: Language.get('wcf.editor.quote.edit')