Skip to:
Content

BuddyPress.org

Ticket #3500: 3500.02.patch

File 3500.02.patch, 1.1 KB (added by boonebgorges, 13 years ago)
  • bp-activity/bp-activity-template.php

    function bp_activity_avatar( $args = '' ) { 
    565565        function bp_get_activity_avatar( $args = '' ) {
    566566                global $activities_template, $bp;
    567567
     568                $type_default = bp_is_single_activity() ? 'full' : 'thumb';
     569
    568570                $defaults = array(
    569571                        'alt'     => __( 'Profile picture of %s', 'buddypress' ),
    570572                        'class'   => 'avatar',
    571573                        'email'   => false,
    572                         'type'    => 'thumb',
     574                        'type'    => $type_default,
    573575                        'user_id' => false
    574576                );
    575577
  • bp-themes/bp-default/activity/entry.php

     
    1818        <div class="activity-avatar">
    1919                <a href="<?php bp_activity_user_link(); ?>">
    2020
    21                         <?php bp_activity_avatar( 'type=thumb' ); ?>
     21                        <?php bp_activity_avatar(); ?>
    2222
    2323                </a>
    2424        </div>