From 4b30e652b407467897fbafcc86c134681741a210 Mon Sep 17 00:00:00 2001 From: Alexey Melnichuk Date: Mon, 20 Jul 2015 12:44:05 +0400 Subject: [PATCH] Fix. Concat conf name in page.lua --- resources/install/scripts/page.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/install/scripts/page.lua b/resources/install/scripts/page.lua index ca150279a9..8d23657700 100644 --- a/resources/install/scripts/page.lua +++ b/resources/install/scripts/page.lua @@ -157,7 +157,7 @@ if ( session:ready() ) then --this destination is the caller that initated the page else --originate the call - cmd_string = "bgapi originate {sip_auto_answer=true,hangup_after_bridge=false,origination_caller_id_name='"..caller_id_name.."',origination_caller_id_number="..caller_id_number.."}user/"..destination.."@"..domain_name.." conference:" ..conf_name"+"..flags.." inline"; + cmd_string = "bgapi originate {sip_auto_answer=true,hangup_after_bridge=false,origination_caller_id_name='"..caller_id_name.."',origination_caller_id_number="..caller_id_number.."}user/"..destination.."@"..domain_name.." conference:"..conf_name.."+"..flags.." inline"; api:executeString(cmd_string); destination_count = destination_count + 1; end