Forums
-
- Forum
- Posts
-
- Installation
- 28,405
- Troubleshooting
- 62,337
- Themes
- 10,400
- Plugins
- 15,321
- Requests & Feedback
- 14,947
- Showcase
- 3,254
-
Fixed.
Changed
<?php if ( $avatar = bb_get_avatar( bb_get_current_user_info( 'name' ), $size = '50' ) ) : ?>
<div style="float:right;"><?php echo $avatar; ?></div>
<?php unset($avatar); endif; ?>
to
<?php if ( $avatar = bb_get_avatar( bb_get_current_user_info( 'id' ), $size = '50' ) ) : ?>
<div style="float:right;"><?php echo $avatar; ?></div>
<?php unset($avatar); endif; ?>