Opened 16 years ago
Closed 16 years ago
#318 closed defect (bug) (fixed)
in blogs/recent-posts not only my posts
Reported by: | matjack1 | Owned by: | |
---|---|---|---|
Milestone: | Priority: | minor | |
Severity: | Version: | ||
Component: | Keywords: | ||
Cc: | jvinch@…, matjack1 |
Description
in page blogs/recent-posts you can see all the posts that the user has revised and not only the posts made by the user
Attachments (1)
Change History (7)
Note: See
TracTickets for help on using
tickets.
i have solved it:
+++ bp-blogs-classes.php
@@ -311,9 +311,12 @@
+ $post = BP_Blogs_Post::fetch_post_content($post_ids[$i]);
+ if($post->post_author == $user_id)
+ $posts[] = $post;
+ else
+ $total_post_count--;
-