From f571ab36a89fc1a1a070c37edf2d01bb8b07a0b0 Mon Sep 17 00:00:00 2001 From: Mark Crane Date: Wed, 3 Sep 2014 19:43:52 +0000 Subject: [PATCH] Fix memcache flush for the Fax dialplan --- app/fax/fax_edit.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/fax/fax_edit.php b/app/fax/fax_edit.php index 43089a5d2b..f3c95a17e6 100644 --- a/app/fax/fax_edit.php +++ b/app/fax/fax_edit.php @@ -464,7 +464,7 @@ if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) { //delete the dialplan context from memcache $fp = event_socket_create($_SESSION['event_socket_ip_address'], $_SESSION['event_socket_port'], $_SESSION['event_socket_password']); if ($fp) { - $switch_cmd .= "memcache delete dialplan:".$_SESSION["context"]."@".$_SESSION['domain_name']; + $switch_cmd .= "memcache delete dialplan:".$_SESSION["context"]; $switch_result = event_socket_request($fp, 'api '.$switch_cmd); }