Quote:
Originally Posted by oldengine
Everything works fine from midnight on, but if I uncomment the 24 hour line, ALL registered users are displayed.
Code:
// $cutoff = $now - 86400 ; // ## Uncomment this line if you want a rolling 24 hours display ## //
I'm on 3.07.
|
Ah, you are absolutely right - that's a bug from the last update.
The line should now be ;
PHP Code:
// $cutoff = TIMENOW - 86400 ; // ## Uncomment this line if you want a rolling 24 hours display ## //
Code updated, thank you for pointing it out.