From 139f17ad48a33954829e2e644960d4e2841799b1 Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Wed, 19 Oct 2016 11:45:28 +0200 Subject: [PATCH] Fixed quote link editing --- .../install/files/js/WoltLabSuite/Core/Ui/Redactor/Quote.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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') -- 2.20.1