Skip to:
Content

bbPress.org

Changeset 3350


Ignore:
Timestamp:
06/27/2011 11:11:39 AM (13 years ago)
Author:
johnjamesjacoby
Message:

Remove completed @todo's and fix incorrect filters on core ID's

Location:
branches/plugin
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • branches/plugin/bbp-admin/bbp-admin.php

    r3343 r3350  
    292292     * Register the importers
    293293     *
    294      * @todo Make this better
    295      *
    296294     * @since bbPress (r2737)
    297295     *
     
    310308
    311309        // Load our importers
    312         // The logic here needs to be improved upon
    313310        $importers = apply_filters( 'bbp_importers', array( 'bbpress' ) );
    314311
  • branches/plugin/bbp-admin/bbp-metaboxes.php

    r3349 r3350  
    1414 *
    1515 * Adds a dashboard widget with forum statistics
    16  *
    17  * @todo Check for updates and show notice
    1816 *
    1917 * @since bbPress (r2770)
  • branches/plugin/bbp-admin/bbp-users.php

    r3243 r3350  
    9292     * Responsible for saving additional profile options and settings
    9393     *
    94      * @todo Everything
    95      *
    9694     * @since bbPress (r2464)
    9795     *
     
    10098     * @return bool Always false
    10199     */
    102     function user_profile_update( $user_id ) {
    103         return false;
    104     }
     100    function user_profile_update( $user_id ) { }
    105101
    106102    /**
    107103     * Responsible for saving additional profile options and settings
    108      *
    109      * @todo Everything
    110104     *
    111105     * @since bbPress (r2464)
     
    115109     * @return bool Always false
    116110     */
    117     function user_profile_forums( $profileuser ) {
    118         return false;
    119     }
     111    function user_profile_forums( $profileuser ) { }
    120112}
    121113endif; // class exists
  • branches/plugin/bbp-includes/bbp-common-functions.php

    r3349 r3350  
    801801 * @since bbPress (r2668)
    802802 *
    803  * @todo When Akismet is made to work with bbPress posts, add a check if the
    804  * post is spam or not, to avoid sending out mails for spam posts
    805  *
    806803 * @param int $reply_id ID of the newly made reply
    807804 * @uses bbp_is_subscriptions_active() To check if the subscriptions are active
  • branches/plugin/bbp-includes/bbp-topic-functions.php

    r3349 r3350  
    26832683    global $bbp;
    26842684
    2685     // User cannot access forum this topic is in
    2686     if ( bbp_is_single_topic() && !bbp_user_can_view_forum( array( 'forum_id' => bbp_get_topic_forum_id() ) ) )
     2685    // User cannot access this forum
     2686    if ( bbp_is_single_forum() && !bbp_user_can_view_forum( array( 'forum_id' => bbp_get_forum_id() ) ) )
    26872687        return;
    26882688
  • branches/plugin/bbpress.php

    r3348 r3350  
    2929 *
    3030 * @since bbPress (r2464)
    31  * @todo Use BP_Component class
    3231 */
    3332class bbPress {
     
    337336
    338337        // Other identifiers
    339         $this->user_id            = apply_filters( 'bbp_view_id', 'bbp_user' );
    340         $this->view_id            = apply_filters( 'bbp_spam_id', 'bbp_view' );
     338        $this->user_id            = apply_filters( 'bbp_user_id', 'bbp_user' );
     339        $this->view_id            = apply_filters( 'bbp_view_id', 'bbp_view' );
    341340        $this->edit_id            = apply_filters( 'bbp_edit_id', 'edit'     );
    342341       
     
    540539    /**
    541540     * Setup the post types for forums, topics and replies
    542      *
    543      * @todo messages
    544541     *
    545542     * @since bbPress (r2597)
Note: See TracChangeset for help on using the changeset viewer.