Skip to:
Content

BuddyPress.org

Changeset 2694


Ignore:
Timestamp:
02/12/2010 10:15:54 AM (15 years ago)
Author:
apeatling
Message:

Fixes #1916

Location:
trunk/bp-themes/bp-default
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-themes/bp-default/archive.php

    r2438 r2694  
    2626
    2727                        <div class="author-box">
    28                             <?php echo get_avatar( get_the_author_email(), '50' ); ?>
     28                            <?php echo get_avatar( get_the_author_meta( 'user_email' ), '50' ); ?>
    2929                            <p><?php printf( __( 'by %s', 'buddypress' ), bp_core_get_userlink( $post->post_author ) ) ?></p>
    3030                        </div>
  • trunk/bp-themes/bp-default/index.php

    r2425 r2694  
    1717
    1818                        <div class="author-box">
    19                             <?php echo get_avatar( get_the_author_email(), '50' ); ?>
     19                            <?php echo get_avatar( get_the_author_meta( 'user_email' ), '50' ); ?>
    2020                            <p><?php printf( __( 'by %s', 'buddypress' ), bp_core_get_userlink( $post->post_author ) ) ?></p>
    2121                        </div>
  • trunk/bp-themes/bp-default/single.php

    r2425 r2694  
    2020
    2121                    <div class="author-box">
    22                         <?php echo get_avatar( get_the_author_email(), '50' ); ?>
     22                        <?php echo get_avatar( get_the_author_meta( 'user_email' ), '50' ); ?>
    2323                        <p><?php printf( __( 'by %s', 'buddypress' ), bp_core_get_userlink( $post->post_author ) ) ?></p>
    2424                    </div>
Note: See TracChangeset for help on using the changeset viewer.