I have a fix that makes it show in both the admin panel and in the forum.
Look in your /modules/Forums/admin/ for the admin_ranks.php file.
Goto line 130 or some where around it and look for this code:
Code:
"IMAGE_DISPLAY" => ( $rank_info['rank_image'] != "" ) ? '[img]../' . $rank_info['rank_image'] . '[/img]' : "",
Now replace that whole line with this code:
Code:
"IMAGE_DISPLAY" => ( $rank_info['rank_image'] != "" ) ? '[img]../../../' . $rank_info['rank_image'] . '[/img]' : "",
For your rank image path be sure to specify this path when setting up ranks for your users:
modules/Forums/templates/subBlack/ranks/
Replace subBlack with your theme name and the image will show in both places.
And wha la it's fixed and shows in both the admin panel and forum.
I hope this helps some people out because ive been looking for a fix for awhile but messed around with it and got it working myself.
-Konan