mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-02 03:55:55 +01:00
fix for post menu display on newPost
This commit is contained in:
@@ -24,8 +24,9 @@ define('forum/topic/posts', [
|
|||||||
data.loggedIn = app.user.uid ? true : false;
|
data.loggedIn = app.user.uid ? true : false;
|
||||||
data.posts.forEach(function(post) {
|
data.posts.forEach(function(post) {
|
||||||
post.selfPost = !!app.user.uid && parseInt(post.uid, 10) === parseInt(app.user.uid, 10);
|
post.selfPost = !!app.user.uid && parseInt(post.uid, 10) === parseInt(app.user.uid, 10);
|
||||||
post.display_moderator_tools = post.selfPost || ajaxify.data.isAdminOrMod;
|
post.display_moderator_tools = post.selfPost || ajaxify.data.privileges.isAdminOrMod;
|
||||||
post.display_move_tools = ajaxify.data.isAdminOrMod;
|
post.display_move_tools = ajaxify.data.privileges.isAdminOrMod;
|
||||||
|
post.display_post_menu = post.selfPost || ajaxify.data.privileges.isAdminOrMod;
|
||||||
});
|
});
|
||||||
|
|
||||||
updatePostCounts(data.posts);
|
updatePostCounts(data.posts);
|
||||||
|
|||||||
Reference in New Issue
Block a user