Page 1 of 1

Calendar problem with skipped records?

PostPosted: Thu Apr 16, 2009 1:27 am
by Martin Dowse
Version 1.5.5

The calendar is really really useful but I noitced one thing that may be a bug. If you are in list mode paging through records and then click on the calendar the url request string passed to the calender includes the current -skip=x parameter so the calendar omits the first x records. To stop happening I added the following to index.php

if (($_REQUEST['-table']) == 'Jobs' and ($_REQUEST['-action']) == 'calendar') {
$_REQUEST['-skip'] = 0;
}

PostPosted: Fri Apr 17, 2009 10:41 am
by shannah
Thanks for reporting this. I'll look into this when I get a chance to confirm whether this is desired behavior, and if so, how it can be changed to achieve better results.

-Steve