underscores not dashes

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8929 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Brian West 2008-07-08 16:26:10 +00:00
parent 98ff4527dd
commit d53d96fd73
2 changed files with 4 additions and 4 deletions

View File

@ -97,7 +97,7 @@
<!-- Uncomment auto-record to toggle recording every conference call. --> <!-- Uncomment auto-record to toggle recording every conference call. -->
<!-- Another valid value is shout://user:pass@server.com/live.mp3 --> <!-- 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> </profile>

View File

@ -4274,7 +4274,7 @@ SWITCH_STANDARD_APP(conference_function)
goto done; 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) */ /* Set the minimum number of members (once you go above it you cannot go below it) */
conference->min = 2; conference->min = 2;
@ -4306,7 +4306,7 @@ SWITCH_STANDARD_APP(conference_function)
conference->pin = switch_core_strdup(conference->pool, dpin); 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) */ /* Set the minimum number of members (once you go above it you cannot go below it) */
conference->min = 1; conference->min = 1;
@ -4317,7 +4317,7 @@ SWITCH_STANDARD_APP(conference_function)
/* Start the conference thread for this conference */ /* Start the conference thread for this conference */
launch_conference_thread(conference); launch_conference_thread(conference);
} else { /* setup user variable */ } 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 */ /* acquire a read lock on the thread so it can't leave without us */