Merge pull request #1047 from moteus/page_concat_conf_name

Fix. Concat conf name in page.lua
This commit is contained in:
FusionPBX 2015-07-20 16:52:23 -06:00
commit a214b57f81
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ if ( session:ready() ) then
--this destination is the caller that initated the page --this destination is the caller that initated the page
else else
--originate the call --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); api:executeString(cmd_string);
destination_count = destination_count + 1; destination_count = destination_count + 1;
end end