Quote shows up for guests on my 3.8.7 forum too... I think it always has.
If you edit your postbit/legacy template you can find this code:
Code:
<if condition="$post['replylink']">
<a href="$post[replylink]" rel="nofollow"><img src="$stylevar[imgdir_button]/<if condition="$post['forwardlink']">reply_small<else />quote</if>.gif" alt="$vbphrase[reply_with_quote]" border="0" /></a>
</if>
and change the condition to:
Code:
<if condition="$post['replylink'] AND $show['member']">
That should hide it from guests if you want to.