Skip to:
Content

BuddyPress.org

Changeset 387 for trunk/bp-blogs.php


Ignore:
Timestamp:
10/10/2008 06:25:42 AM (17 years ago)
Author:
apeatling
Message:

Fixed #94 and changed order of users blog posts to most recent at the top.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-blogs.php

    r386 r387  
    290290    $post = get_post($post_id);
    291291   
     292    /* Don't record this if it's not a post, not published, or password protected */
     293    if ( $post->post_type != 'post' || $post->post_status != 'publish' || $post->post_password != '' )
     294        return false;
     295   
    292296    /**
    293297     * Check how many recorded posts there are for the user. If we are
Note: See TracChangeset for help on using the changeset viewer.