Update dialplans.php

This commit is contained in:
FusionPBX 2019-10-19 18:53:54 -06:00 committed by GitHub
parent bf96cf2e47
commit 439c5232d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@
$offset = $rows_per_page * $page;
//get the list of dialplans
$sql = "select count(*) from v_dialplans ";
$sql = "select * from v_dialplans ";
$sql .= $sql_where;
$sql .= ($order_by != '' ? order_by($order_by, $order) : 'order by dialplan_order asc, dialplan_name asc ');
$sql .= limit_offset($rows_per_page, $offset);