Minor bug fix:
Open timeslips.php and find:
Code:
$pagenav = construct_page_nav($userscount[users],"timeslips.php?$session[sessionurl]do= $_REQUEST[do]&perpage=$perpage");
Replace it with:
Code:
$pagenav = construct_page_nav($userscount[users],"timeslips.php?$session[sessionurl]do=$_REQUEST[do]&perpage=$perpage");
It fixes an unneeded space in the page navigation links (between do= and $_REQUEST[do]) which was causing the sort by method to be lost when viewing pages other than the first one.
First post has been updated.