Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
09/18/2012 06:03:00 PM (12 years ago)
Author:
r-a-y
Message:

EOF:

  • Fall in line with WordPress 3.4 coding practices by removing all EOF closing PHP tags.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-activity/bp-activity-notifications.php

    r6326 r6342  
    3939 */
    4040function bp_activity_at_message_notification( $activity_id, $receiver_user_id ) {
    41    
     41
    4242    // Don't leave multiple notifications for the same activity item
    4343    $notifications = BP_Core_Notification::get_all_for_user( $receiver_user_id, 'all' );
    44    
     44
    4545    foreach( $notifications as $notification ) {
    4646        if ( $activity_id == $notification->item_id ) {
     
    231231    }
    232232}
    233 
    234 ?>
Note: See TracChangeset for help on using the changeset viewer.