it already using $user->data['user_lastvisit']manwe_ wrote:Imho mod should use $user->data['user_lastmark'] or $user->data['user_lastvisit'] whichever is greater.
Code: Select all
' . $user->data['user_lastvisit'] . '
Code: Select all
' . max( $user->data['user_lastmark'] , $user->data['user_lastvisit'] ) . '
nope, it isn't working as you saidmanwe_ wrote:And only lastvisit. So when you click "Mark forums read" number of posts in round brackets won't change. What I wanted to say is instead ofshould beCode: Select all
' . $user->data['user_lastvisit'] . '
Code: Select all
' . max( $user->data['user_lastmark'] , $user->data['user_lastvisit'] ) . '
hmmm i think in this way we can't use this mod..comarzysko wrote:this mod is working only on index.
we're all the same, wainting for paul's answer...
ticky wrote:^^ its not a problem with gold, thats how it was coded to work
The post count on phpBB2 did the same thing. It would only reset after the session expired.