From 439c5232d4fc98dfbb7e04fb6993d2d18106ad93 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Sat, 19 Oct 2019 18:53:54 -0600 Subject: [PATCH] Update dialplans.php --- app/dialplans/dialplans.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/dialplans/dialplans.php b/app/dialplans/dialplans.php index 9f611ea1df..c07fd52d7d 100644 --- a/app/dialplans/dialplans.php +++ b/app/dialplans/dialplans.php @@ -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);