Skip to:
Content

BuddyPress.org

Ticket #1916: 1916.001.diff

File 1916.001.diff, 2.2 KB (added by cnorris23, 15 years ago)
  • bp-themes/bp-default/search.php

     
    2525                                        <div class="post" id="post-<?php the_ID(); ?>">
    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('email'), '50' ); ?>
    2929                                                        <p><?php printf( __( 'by %s', 'buddypress' ), bp_core_get_userlink( $post->post_author ) ) ?></p>
    3030                                                </div>
    3131
  • bp-themes/bp-default/index.php

     
    1616                                        <div class="post" id="post-<?php the_ID(); ?>">
    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('email'), '50' ); ?>
    2020                                                        <p><?php printf( __( 'by %s', 'buddypress' ), bp_core_get_userlink( $post->post_author ) ) ?></p>
    2121                                                </div>
    2222
  • bp-themes/bp-default/archive.php

     
    2525                                        <div class="post" id="post-<?php the_ID(); ?>">
    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('email'), '50' ); ?>
    2929                                                        <p><?php printf( __( 'by %s', 'buddypress' ), bp_core_get_userlink( $post->post_author ) ) ?></p>
    3030                                                </div>
    3131
  • bp-themes/bp-default/single.php

     
    1919                                <div class="post" id="post-<?php the_ID(); ?>">
    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('email'), '50' ); ?>
    2323                                                <p><?php printf( __( 'by %s', 'buddypress' ), bp_core_get_userlink( $post->post_author ) ) ?></p>
    2424                                        </div>
    2525