The problem most likely is that this:
Code:
menu2[0]='<a href="javascript:void(0)">» Optionen</a>'
menu2[1]='{postrow.PROFILE}'
menu2[2]='{postrow.PM}'
menu2[3]='{postrow.SEARCH}'
menu2[4]='{postrow.EMAIL}'
menu2[5]='{postrow.WWW}'
is written out and parsed by the browser at the time the page is first loaded. These values will not change unless you write some code to reinitialize them. Like if each time a different post in the thread receives focus or however that is done, if that changes the values represented by those tokens have it also run a function like:
Code:
function updateTokens(){
menu2[0]='<a href="javascript:void(0)">» Optionen</a>'
menu2[1]='{postrow.PROFILE}'
menu2[2]='{postrow.PM}'
menu2[3]='{postrow.SEARCH}'
menu2[4]='{postrow.EMAIL}'
menu2[5]='{postrow.WWW}'
}
So let's say a given post in a thread is focused on by clicking a link like this or something:
HTML Code:
<a href="whatever.php?postcount++">Next</a>
It could be changed to:
HTML Code:
<a href="whatever.php?postcount++" onclick="updateTokens();return true;">Next</a>
or perhaps:
HTML Code:
<a href="whatever.php?postcount++" onclick="setTimeout('updateTokens()', 2000);return true;">Next</a>
If the token's values don't change right away.
Bookmarks