Skip to:
Content

BuddyPress.org

Changeset 6733


Ignore:
Timestamp:
01/19/2013 03:40:42 AM (12 years ago)
Author:
boonebgorges
Message:

Pinking shears

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-templates/bp-legacy/buddypress-functions.php

    r6732 r6733  
    118118                add_action( 'bp_group_header_actions',     'bp_group_join_button',           5 );
    119119                add_action( 'bp_group_header_actions',     'bp_group_new_topic_button',      20 );
    120                 add_action( 'bp_directory_groups_actions', 'bp_group_join_button' ); 
     120                add_action( 'bp_directory_groups_actions', 'bp_group_join_button' );
    121121            }
    122122
    123123            // Blog button
    124124            if ( bp_is_active( 'blogs' ) )
    125                 add_action( 'bp_directory_blogs_actions',  'bp_blogs_visit_blog_button' ); 
     125                add_action( 'bp_directory_blogs_actions',  'bp_blogs_visit_blog_button' );
    126126
    127127        }
     
    296296
    297297    }
    298    
     298
    299299    /**
    300300     * Add secondary avatar image to this activity stream's record, if supported.
  • trunk/bp-themes/bp-default/_inc/ajax.php

    r6732 r6733  
    280280    if ( bp_has_activities ( 'include=' . $activity_id ) ) {
    281281        while ( bp_activities() ) {
    282             bp_the_activity(); 
     282            bp_the_activity();
    283283            locate_template( array( 'activity/entry.php' ), true );
    284284        }
     
    353353 * @return mixed String on error, void on success
    354354 * @since BuddyPress (1.2)
    355  */ 
     355 */
    356356function bp_dtheme_delete_activity() {
    357357    // Bail if not a POST action
     
    611611            echo '<a id="friend-' . $_POST['fid'] . '" class="remove" rel="remove" title="' . __( 'Cancel Friendship Request', 'buddypress' ) . '" href="' . wp_nonce_url( bp_loggedin_user_domain() . bp_get_friends_slug() . '/requests/cancel/' . (int) $_POST['fid'] . '/', 'friends_withdraw_friendship' ) . '" class="requested">' . __( 'Cancel Friendship Request', 'buddypress' ) . '</a>';
    612612
    613     } elseif ( 'pending' == BP_Friends_Friendship::check_is_friend( bp_loggedin_user_id(), (int) $_POST['fid'] ) ) {       
     613    } elseif ( 'pending' == BP_Friends_Friendship::check_is_friend( bp_loggedin_user_id(), (int) $_POST['fid'] ) ) {
    614614        check_ajax_referer( 'friends_withdraw_friendship' );
    615615
Note: See TracChangeset for help on using the changeset viewer.