SIP Profile Settings: Set paging at 200 records, add param.

This commit is contained in:
reliberate 2016-03-30 00:58:47 -06:00
parent 93a4f00e8b
commit a9a61105b3
1 changed files with 2 additions and 2 deletions

View File

@ -64,8 +64,8 @@ require_once "resources/paging.php";
}
//prepare to page the results
$rows_per_page = ($_SESSION['domain']['paging']['numeric'] != '') ? $_SESSION['domain']['paging']['numeric'] : 50;
$param = "";
$rows_per_page = 200;
$param = "&id=".$sip_profile_uuid;
$page = $_GET['page'];
if (strlen($page) == 0) { $page = 0; $_GET['page'] = 0; }
list($paging_controls, $rows_per_page, $var3) = paging($num_rows, $param, $rows_per_page);