Forums
-
- Forum
- Posts
-
- Installation
- 28,436
- Troubleshooting
- 62,516
- Themes
- 10,431
- Plugins
- 15,340
- Requests & Feedback
- 14,964
- Showcase
- 3,256
-
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; ?>