diff --git a/public/src/client/topic/threadTools.js b/public/src/client/topic/threadTools.js
index c1900fc508..55f65c9129 100644
--- a/public/src/client/topic/threadTools.js
+++ b/public/src/client/topic/threadTools.js
@@ -106,10 +106,10 @@ define('forum/topic/threadTools', ['forum/topic/fork', 'forum/topic/move'], func
translator.translate(isLocked ? '[[topic:locked]]' : '[[topic:reply]]', function(translated) {
var className = isLocked ? 'fa-lock' : 'fa-reply';
threadEl.find('[component="post/reply"]').html(' ' + translated);
- $('[component="post/reply"]').attr('disabled', isLocked).html(isLocked ? ' ' + translated : translated);
+ $('[component="topic/reply"]').attr('disabled', isLocked).html(isLocked ? ' ' + translated : translated);
});
- threadEl.find('[component="quote"], [component="edit"], [component="delete"]').toggleClass('hidden', isLocked);
+ threadEl.find('[component="post/quote"], [component="post/edit"], [component="post/delete"]').toggleClass('hidden', isLocked);
$('[component="post/header"] i.fa-lock').toggleClass('hide', !data.isLocked);
ThreadTools.threadState.locked = data.isLocked;
}