From a7f41210efcf97ba6d00b213bf535681f91c173d Mon Sep 17 00:00:00 2001 From: Mark Crane Date: Sun, 27 Jul 2014 05:12:27 +0000 Subject: [PATCH] Changet GET to a REQUEST --- app/dialplan/dialplans.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/dialplan/dialplans.php b/app/dialplan/dialplans.php index 4df501fc04..ae0a879872 100644 --- a/app/dialplan/dialplans.php +++ b/app/dialplan/dialplans.php @@ -41,11 +41,11 @@ else { } //set the http values as php variables - $search = check_str($_GET["search"]); - $order_by = check_str($_GET["order_by"]); - $order = check_str($_GET["order"]); - $dialplan_context = check_str($_GET["dialplan_context"]); - $app_uuid = check_str($_GET["app_uuid"]); + $search = check_str($_REQUEST["search"]); + $order_by = check_str($_REQUEST["order_by"]); + $order = check_str($_REQUEST["order"]); + $dialplan_context = check_str($_REQUEST["dialplan_context"]); + $app_uuid = check_str($_REQUEST["app_uuid"]); //includes require_once "resources/header.php";