Forums
-
- Forum
- Posts
-
- Installation
- 28,536
- Troubleshooting
- 62,771
- Themes
- 10,444
- Plugins
- 15,385
- Requests & Feedback
- 14,987
- Showcase
- 3,257
-
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; ?>