Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
09/18/2012 06:03:00 PM (13 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-members/bp-members-buddybar.php

    r6093 r6342  
    8383            echo '<li>';
    8484            echo '<a href="' . bp_core_get_user_domain( $author->user_id, $author->user_nicename, $author->user_login ) . '">';
    85             echo bp_core_fetch_avatar( array( 
    86                 'item_id' => $author->user_id, 
    87                 'email'   => $author->user_email, 
    88                 'width'   => 15, 
    89                 'height'  => 15, 
     85            echo bp_core_fetch_avatar( array(
     86                'item_id' => $author->user_id,
     87                'email'   => $author->user_email,
     88                'width'   => 15,
     89                'height'  => 15,
    9090                'alt'     => sprintf( __( 'Profile picture of %s', 'buddypress' ), $author->display_name )
    9191            ) );
     
    149149}
    150150add_action( 'bp_adminbar_menus', 'bp_members_adminbar_admin_menu', 20 );
    151 
    152 ?>
Note: See TracChangeset for help on using the changeset viewer.