From dbbecaf2ef782a91f0e31d80d162c23ea5e1874e Mon Sep 17 00:00:00 2001 From: markjcrane Date: Fri, 7 Aug 2015 14:34:58 -0500 Subject: [PATCH] Increase the memory efficiency and page load time for IVR Menu edit. --- app/ivr_menus/ivr_menu_edit.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/ivr_menus/ivr_menu_edit.php b/app/ivr_menus/ivr_menu_edit.php index b02a144d20..83db6d79fa 100644 --- a/app/ivr_menus/ivr_menu_edit.php +++ b/app/ivr_menus/ivr_menu_edit.php @@ -321,7 +321,7 @@ if (count($_POST) > 0 && strlen($_POST["persistformvar"]) == 0) { if (!isset($ivr_menu_exit_action)) { $ivr_menu_exit_action = ''; } //get the recordings - $sql = "select * from v_recordings "; + $sql = "select recording_name, recording_filename from v_recordings "; $sql .= "where domain_uuid = '".$_SESSION["domain_uuid"]."' "; $sql .= "order by recording_name asc "; $prep_statement = $db->prepare(check_sql($sql));