Quote:
Originally Posted by nighteyes
A bug? The following was reported by one our members who had exceeded their daily limit...
|
Easy fix.
In usercp.php find this line:
$earliest = $check['dateline'];
Move it right below $sofar++; so it's above the }, i.e.
Code:
$sofar++;
$earliest = $check['dateline'];
}
Change this line:
Code:
$nexttime = date($vboptions['dateformat'].' '.$vboptions['timeformat'], ($check['dateline']+86400));
To this:
Code:
$nexttime = vbdate($vboptions['dateformat'].' '.$vboptions['timeformat'], ($earliest+86400));
ZIP updated to v1.0.1.