Ticket #1916: 1916.001.diff
File 1916.001.diff, 2.2 KB (added by , 15 years ago) |
---|
-
bp-themes/bp-default/search.php
25 25 <div class="post" id="post-<?php the_ID(); ?>"> 26 26 27 27 <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' ); ?> 29 29 <p><?php printf( __( 'by %s', 'buddypress' ), bp_core_get_userlink( $post->post_author ) ) ?></p> 30 30 </div> 31 31 -
bp-themes/bp-default/index.php
16 16 <div class="post" id="post-<?php the_ID(); ?>"> 17 17 18 18 <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' ); ?> 20 20 <p><?php printf( __( 'by %s', 'buddypress' ), bp_core_get_userlink( $post->post_author ) ) ?></p> 21 21 </div> 22 22 -
bp-themes/bp-default/archive.php
25 25 <div class="post" id="post-<?php the_ID(); ?>"> 26 26 27 27 <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' ); ?> 29 29 <p><?php printf( __( 'by %s', 'buddypress' ), bp_core_get_userlink( $post->post_author ) ) ?></p> 30 30 </div> 31 31 -
bp-themes/bp-default/single.php
19 19 <div class="post" id="post-<?php the_ID(); ?>"> 20 20 21 21 <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' ); ?> 23 23 <p><?php printf( __( 'by %s', 'buddypress' ), bp_core_get_userlink( $post->post_author ) ) ?></p> 24 24 </div> 25 25