Fix a paging issue that affecte inbound and outbound routes when there were more than a 150 of them.

This commit is contained in:
Mark Crane
2012-10-28 12:05:25 +00:00
parent 845c3cb73f
commit 89a2ba7606

View File

@@ -148,6 +148,7 @@ else {
$rows_per_page = 150;
$param = "";
if (strlen($app_uuid) > 0) { $param = "&app_uuid=".$app_uuid; }
$page = $_GET['page'];
if (strlen($page) == 0) { $page = 0; $_GET['page'] = 0; }
list($paging_controls, $rows_per_page, $var_3) = paging($num_rows, $param, $rows_per_page);