You're doing a string replace on a template that hasn't been rendered for the currently thread yet. Your'e doing a string replace on it when you are into the next threadid iteration which is why it is doing what it's doing.
If you just want to add something into the current threadbit, then just define something like:
PHP Code:
$thread['my_var']="<div class='author'>".$thread['threadtitle']."</div>";
And then put this in the template:
HTML Code:
{vb:raw thread.my_var}