mirror of
https://github.com/signalwire/freeswitch.git
synced 2026-07-23 12:42:02 +00:00
underscores not dashes
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8929 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user