Skip to:
Content

BuddyPress.org

Changeset 1831


Ignore:
Timestamp:
09/09/2009 04:47:46 AM (16 years ago)
Author:
apeatling
Message:

Fixing incorrect avatar syntax.

File:
1 edited

Legend:

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

    r1830 r1831  
    436436}
    437437    function bp_get_group_avatar_thumb( $group = false ) {
    438         return bp_get_group_avatar( 'type=thumb' );
     438        return bp_get_group_avatar( array( 'type' => 'thumb' ) );
    439439    }
    440440
     
    443443}
    444444    function bp_get_group_avatar_mini( $group = false ) {
    445         return bp_get_group_avatar( 'type=thumb&width=30&height=30' );
     445        return bp_get_group_avatar( array( 'type' => 'thumb', 'width' => 30, 'height' => 30 ) );
    446446    }
    447447
Note: See TracChangeset for help on using the changeset viewer.