Changeset 2528 for trunk/bp-themes/bp-default/functions.php
- Timestamp:
- 02/01/2010 05:06:20 PM (16 years ago)
- File:
-
- 1 edited
-
trunk/bp-themes/bp-default/functions.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-themes/bp-default/functions.php
r2527 r2528 63 63 $GLOBALS['comment'] = $comment; ?> 64 64 65 <li <?php comment_class(); ?>id="comment-<?php comment_ID(); ?>">65 <li id="comment-<?php comment_ID(); ?>"> 66 66 <div class="comment-avatar-box"> 67 67 <div class="avb"> 68 68 <a href="<?php echo get_comment_author_url() ?>"> 69 <?php echo get_avatar( $comment, 50); ?>69 <?php echo bp_core_fetch_avatar( array( 'item_id' => $comment->user_id, 'width' => 50, 'height' => 50, 'email' => $comment->comment_author_email ) ); ?> 70 70 </a> 71 71 </div> … … 79 79 </div> 80 80 81 <?php if ( $comment->comment_approved == '0') : ?>81 <?php if ( $comment->comment_approved == '0' ) : ?> 82 82 <em class="moderate"><?php _e('Your comment is awaiting moderation.'); ?></em><br /> 83 83 <?php endif; ?>
Note: See TracChangeset
for help on using the changeset viewer.