From 89a2ba7606c0db775d13d47efe287b0a97edc2de Mon Sep 17 00:00:00 2001 From: Mark Crane Date: Sun, 28 Oct 2012 12:05:25 +0000 Subject: [PATCH] Fix a paging issue that affecte inbound and outbound routes when there were more than a 150 of them. --- app/dialplan/dialplans.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/dialplan/dialplans.php b/app/dialplan/dialplans.php index 98dffa834f..48d344fe87 100644 --- a/app/dialplan/dialplans.php +++ b/app/dialplan/dialplans.php @@ -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);