From 97a3d8b5665ee4c250861f6357f93b0937832845 Mon Sep 17 00:00:00 2001 From: Mark Crane Date: Wed, 17 Dec 2014 10:46:03 +0000 Subject: [PATCH] Remove an extra comma in the dial_string. --- app/calls/resources/classes/follow_me.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/calls/resources/classes/follow_me.php b/app/calls/resources/classes/follow_me.php index b9f3966dee..eaabb0ee07 100644 --- a/app/calls/resources/classes/follow_me.php +++ b/app/calls/resources/classes/follow_me.php @@ -316,7 +316,7 @@ include "root.php"; $result = $prep_statement_2->fetchAll(PDO::FETCH_NAMED); $dial_string = "{fail_on_single_reject=USER_BUSY"; $dial_string .= ",instant_ringback=true"; - $dial_string .= ",ignore_early_media=true,"; + $dial_string .= ",ignore_early_media=true"; $dial_string .= ",domain_uuid=".$_SESSION['domain_uuid']; $dial_string .= ",sip_invite_domain=".$_SESSION['domain_name']; $dial_string .= ",domain_name=".$_SESSION['domain_name'];