From 7dbca26bfe9bfbfdff5fbeae1cb4ff3856c2a8c7 Mon Sep 17 00:00:00 2001 From: Mark Crane Date: Mon, 14 Oct 2013 20:30:28 +0000 Subject: [PATCH] Fix the North American to International outbound route regex. --- app/dialplan_outbound/dialplan_outbound_add.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/dialplan_outbound/dialplan_outbound_add.php b/app/dialplan_outbound/dialplan_outbound_add.php index 0d257b80cb..4614bebeff 100644 --- a/app/dialplan_outbound/dialplan_outbound_add.php +++ b/app/dialplan_outbound/dialplan_outbound_add.php @@ -278,7 +278,7 @@ else { $label = $text['label-north-america']; $abbrv = "10-11d"; break; - case "^(011(\d{9,17})$": + case "^(011\d{9,17})$": $label = $text['label-north-america-intl']; $abbrv = "011.9-17d"; break;