From ae243926ce6794f9f464fdff5d836873e4189b84 Mon Sep 17 00:00:00 2001 From: Alexey Melnichuk Date: Thu, 21 Jan 2016 17:29:14 +0300 Subject: [PATCH] Fix. Copy dialplan extension with correct `add_uuid` for outbound route. --- app/dialplan/dialplan_copy.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/dialplan/dialplan_copy.php b/app/dialplan/dialplan_copy.php index de81736106..81829cd4de 100644 --- a/app/dialplan/dialplan_copy.php +++ b/app/dialplan/dialplan_copy.php @@ -79,9 +79,9 @@ else { //create a new app_uuid when copying a dialplan except for these exceptions switch ($app_uuid) { - case "c03b422e-13a8-bd1b-e42b-b6b9b4d27ce4": //inbound routes - case "8c914ec3-9fc0-8ab5-4cda-6c9288bdc9a3": //outbound routes - case "4b821450-926b-175a-af93-a03c441818b1": //time conditions + case "c03b422e-13a8-bd1b-e42b-b6b9b4d27ce4": break; //inbound routes + case "8c914ec3-9fc0-8ab5-4cda-6c9288bdc9a3": break; //outbound routes + case "4b821450-926b-175a-af93-a03c441818b1": break; //time conditions default: $app_uuid = uuid(); }