Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
10/09/2008 04:37:49 AM (17 years ago)
Author:
apeatling
Message:
  • Moved all group pages to the root, rather than using a member URL
  • Introduced groupmeta support - groups_update_groupmeta / groups_delete_groupmeta / groups_get_groupmeta
  • Added widgets for site wide activity and who's online
  • Updated home theme to support display of new BuddyPress widgets
  • Added site wide activity feed support
  • Fixed bug where ajax functions would only work when logged in
  • Various other bug fixes
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-xprofile/bp-xprofile-templatetags.php

    r359 r375  
    232232}
    233233
    234 function bp_loggedinuser_avatar_thumbnail() {
    235     global $bp;
    236     echo bp_core_get_avatar( $bp['loggedin_userid'], 1 );
     234function bp_loggedinuser_avatar_thumbnail( $width = false, $height = false ) {
     235    global $bp;
     236   
     237    if ( $width && $height )
     238        echo bp_core_get_avatar( $bp['loggedin_userid'], 1, false, $width, $height );
     239    else
     240        echo bp_core_get_avatar( $bp['loggedin_userid'], 1 );
    237241}
    238242
Note: See TracChangeset for help on using the changeset viewer.