From a6b96b67728ea6545f4fffc9284166cbd2dea0e0 Mon Sep 17 00:00:00 2001 From: Baris Usakli Date: Wed, 17 Jan 2018 14:37:21 -0500 Subject: [PATCH] fix undef var --- public/src/client/topic/move-post.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/src/client/topic/move-post.js b/public/src/client/topic/move-post.js index 91ea917f69..0c08e030da 100644 --- a/public/src/client/topic/move-post.js +++ b/public/src/client/topic/move-post.js @@ -21,7 +21,7 @@ define('forum/topic/move-post', [], function () { } movePost(button.parents('[data-pid]'), button.parents('[data-pid]').attr('data-pid'), topicIdEl.val(), function () { - topicId.val(''); + topicIdEl.val(''); }); }, },