Quote:
Originally Posted by jokerz
Hi, Paul M. I am using 3.0.7, I am trying to show last 24 hours instead of today but it doesn't work, only show today.
Index.php -
$cutoff = TIMENOW - (substr($tnow,8,2)*3600 + substr($tnow,10,2)*60 + substr($tnow,12,2));
//$cutoff = TIMENOW - 86400 ; // ## Uncomment this line if you want a rolling 24 hours display ## //
I did try remove the comment line // infront $cutoff. Any clue or am I doing wrong? Thx
|
Yep, just remove the '//' - you can remove the first $cutoff line as well if you want.
i.e. those two lines become ;
Code:
$cutoff = TIMENOW - 86400 ;