2632,2640c2632,2638
< 	if ( $bp->groups->current_group->avatar_full ) { ?>
< 
< 		<img src="<?php echo esc_url( $bp->groups->current_group->avatar_full ); ?>" alt="<?php _e( 'Group Avatar', 'buddypress' ) ?>" class="avatar" />
< 
< 	<?php } else { ?>
< 
< 		<img src="<?php echo esc_url( $bp->groups->image_base . '/none.gif' ); ?>" alt="<?php _e( 'No Group Avatar', 'buddypress' ) ?>" class="avatar" />
< 
< 	<?php }
---
> 	if ( $bp->groups->current_group->avatar_full ) {
> 		return "<img src='" . esc_url( $bp->groups->current_group->avatar_full ) .
> 			"' alt='" . __( 'Group Avatar', 'buddypress' ) . "' class='avatar' />";
> 	}
> 	return "<img src='{$bp->groups->image_base}/none.gif' alt='" .
> 		__( 'No Group Avatar', 'buddypress' ) .
> 		"' class='avatar' />";
