Here is a suggestion that you might have already incorperated in the next release, but just in case you haven't.
In the JOURNAL temlpate fix it so that unregistered users can not see the MY JOURNAL button by doing something to this effect and you could added a icon instead of a button like I did below.
Replace this:
Code:
<form method="post" action="journal.php?do=gotomyjournal"><input class="button" type="submit" name="myjournal" value="My Journal" /></form></td>
With this:
Code:
<if condition="$bbuserinfo['userid']">
<a href="journal.php?do=gotomyjournal"><img src="$stylevar[imgdir_button]/myjournal.gif" border="0" alt="Guestbook for this entry" /></a></td>
</if>