Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
07/22/2011 05:02:46 PM (15 years ago)
Author:
boonebgorges
Message:

Removes ajax-loader spans from markup and ajax-loader triggers from bp-default JS. Replaces with .loader class when appropriate. Fixes #3349

File:
1 edited

Legend:

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

    r4801 r4804  
    124124
    125125    if ( $notify_members ) {
    126         require ( BP_PLUGIN_DIR . '/bp-groups/bp-groups-notifications.php' );
    127126        groups_notification_group_updated( $group->id );
    128127    }
     
    520519        'item_id' => $group_id
    521520    ) );
    522 
    523     // Require the notifications code so email notifications can be set on
    524     // the 'bp_activity_posted_update' action.
    525     require( BP_PLUGIN_DIR . '/bp-groups/bp-groups-notifications.php' );
    526521
    527522    groups_update_groupmeta( $group_id, 'last_activity', bp_core_current_time() );
     
    774769        $admins = groups_get_group_admins( $group_id );
    775770
    776         require ( BP_PLUGIN_DIR . '/bp-groups/bp-groups-notifications.php' );
    777 
    778771        // Saved okay, now send the email notification
    779772        for ( $i = 0, $count = count( $admins ); $i < $count; ++$i )
     
    819812
    820813    // Send a notification to the user.
    821     require ( BP_PLUGIN_DIR . '/bp-groups/bp-groups-notifications.php' );
    822814    groups_notification_membership_request_completed( $membership->user_id, $membership->group_id, true );
    823815
     
    832824
    833825    // Send a notification to the user.
    834     require ( BP_PLUGIN_DIR . '/bp-groups/bp-groups-notifications.php' );
    835826    groups_notification_membership_request_completed( $membership->user_id, $membership->group_id, false );
    836827
Note: See TracChangeset for help on using the changeset viewer.