osticket/include/staff/syslogs.inc.php on line 10, add:
$page = $_REQUEST != null ? $_REQUEST : "1";
Your code should look like this (code before and after is given to help)
$type=null;
$page = $_REQUEST != null ? $_REQUEST : "1";
switch(strtolower($_REQUEST)){
It was wonderful "paging code" except for the fact that it never knew what page you were on. Now it does.