Skip to:
Content

BuddyPress.org

Changeset 7673


Ignore:
Timestamp:
12/15/2013 02:31:44 PM (11 years ago)
Author:
johnjamesjacoby
Message:

Fix typo in friends_withdraw_friendship() introduced in r5931. See #3897. Fixes #5293.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-friends/bp-friends-functions.php

    r7625 r7673  
    160160
    161161    if ( empty( $friendship->is_confirmed ) && BP_Friends_Friendship::withdraw( $friendship_id ) ) {
     162
     163        // @deprecated Since 1.9
    162164        do_action_ref_array( 'friends_friendship_whithdrawn', array( $friendship_id, &$friendship ) );
     165
     166        // @since 1.9
     167        do_action_ref_array( 'friends_friendship_withdrawn',  array( $friendship_id, &$friendship ) );
     168
    163169        return true;
    164170    }
Note: See TracChangeset for help on using the changeset viewer.