Skip to:
Content

BuddyPress.org

Ticket #1250: group-no-grav.patch

File group-no-grav.patch, 1.1 KB (added by johnjamesjacoby, 15 years ago)

group no_grav

  • bp-groups-templatetags.php

     
    16961696                        'height' => false,
    16971697                        'class' => 'avatar',
    16981698                        'id' => 'avatar-crop-preview',
    1699                         'alt' => __( 'Group avatar', 'buddypress' )
     1699                        'alt' => __( 'Group avatar', 'buddypress' ),
     1700                        'no_grav' => false
    17001701                );
    17011702
    17021703                $r = wp_parse_args( $args, $defaults );
    17031704                extract( $r, EXTR_SKIP );
    17041705       
    1705                 return apply_filters( 'bp_get_new_group_avatar', bp_core_fetch_avatar( array( 'item_id' => $bp->groups->current_group->id, 'object' => 'group', 'type' => $type, 'avatar_dir' => 'group-avatars', 'alt' => $alt, 'width' => $width, 'height' => $height, 'class' => $class ) ) );
     1706                return apply_filters( 'bp_get_new_group_avatar', bp_core_fetch_avatar( array( 'item_id' => $bp->groups->current_group->id, 'object' => 'group', 'type' => $type, 'avatar_dir' => 'group-avatars', 'alt' => $alt, 'width' => $width, 'height' => $height, 'class' => $class, 'no_grav' => $no_grav ) ) );
    17061707        }
    17071708
    17081709function bp_group_creation_previous_link() {