diff --git a/src/socket.io/posts/tools.js b/src/socket.io/posts/tools.js index 5abf9b7f7d..2266a0ac38 100644 --- a/src/socket.io/posts/tools.js +++ b/src/socket.io/posts/tools.js @@ -68,6 +68,7 @@ module.exports = function (SocketPosts) { posts.display_flag_tools = socket.uid && !posts.selfPost && results.canFlag.flag; posts.display_moderator_tools = posts.display_edit_tools || posts.display_delete_tools; posts.display_move_tools = results.isAdmin || results.isModerator; + posts.display_change_owner_tools = results.isAdmin || results.isModerator; posts.display_ip_ban = (results.isAdmin || results.isGlobalMod) && !posts.selfPost; posts.display_history = results.history; posts.toolsVisible = posts.tools.length || posts.display_moderator_tools;