提交 d53d96fd authored 作者: Brian West's avatar Brian West

underscores not dashes

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8929 d0543943-73ff-0310-b7d9-9358b9ac24b2
上级 98ff4527
......@@ -97,7 +97,7 @@
<!-- Uncomment auto-record to toggle recording every conference call. -->
<!-- Another valid value is shout://user:pass@server.com/live.mp3 -->
<!--
<param name="auto-record" value="/usr/local/freeswitch/sounds/conference/${conference-name}_${strftime(%Y-%m-%d-%H-%M-%S)}.wav"/>
<param name="auto-record" value="/usr/local/freeswitch/sounds/conference/${conference_name}_${strftime(%Y-%m-%d-%H-%M-%S)}.wav"/>
-->
</profile>
......
......@@ -4274,7 +4274,7 @@ SWITCH_STANDARD_APP(conference_function)
goto done;
}
switch_channel_set_variable(channel, "conference-name", conference->name);
switch_channel_set_variable(channel, "conference_name", conference->name);
/* Set the minimum number of members (once you go above it you cannot go below it) */
conference->min = 2;
......@@ -4306,7 +4306,7 @@ SWITCH_STANDARD_APP(conference_function)
conference->pin = switch_core_strdup(conference->pool, dpin);
}
switch_channel_set_variable(channel, "conference-name", conference->name);
switch_channel_set_variable(channel, "conference_name", conference->name);
/* Set the minimum number of members (once you go above it you cannot go below it) */
conference->min = 1;
......@@ -4317,7 +4317,7 @@ SWITCH_STANDARD_APP(conference_function)
/* Start the conference thread for this conference */
launch_conference_thread(conference);
} else { /* setup user variable */
switch_channel_set_variable(channel, "conference-name", conference->name);
switch_channel_set_variable(channel, "conference_name", conference->name);
}
/* acquire a read lock on the thread so it can't leave without us */
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论