Skip to content
Snippets Groups Projects
Commit cf24f7ff authored by Mark Spencer's avatar Mark Spencer
Browse files

Change 'u' back to 's' since it's required for both user and admin menus

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3048 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 5e29d3a5
Branches
Tags
No related merge requests found
...@@ -65,7 +65,7 @@ static char *descrip = ...@@ -65,7 +65,7 @@ static char *descrip =
" 'b' -- run AGI script specified in ${MEETME_AGI_BACKGROUND}\n" " 'b' -- run AGI script specified in ${MEETME_AGI_BACKGROUND}\n"
" Default: conf-background.agi\n" " Default: conf-background.agi\n"
" (Note: This does not work with non-Zap channels in the same conference)\n" " (Note: This does not work with non-Zap channels in the same conference)\n"
" 'u' -- send user to admin/user menu if '*' is received\n" " 's' -- Present menu (user or admin) when '*' is received ('send' to menu)\n"
" 'a' -- set admin mode\n"; " 'a' -- set admin mode\n";
static char *descrip2 = static char *descrip2 =
...@@ -1094,7 +1094,7 @@ static int conf_exec(struct ast_channel *chan, void *data) ...@@ -1094,7 +1094,7 @@ static int conf_exec(struct ast_channel *chan, void *data)
confflags |= CONFFLAG_MONITOR; confflags |= CONFFLAG_MONITOR;
if (strchr(inflags, 'p')) if (strchr(inflags, 'p'))
confflags |= CONFFLAG_POUNDEXIT; confflags |= CONFFLAG_POUNDEXIT;
if (strchr(inflags, 'u')) if (strchr(inflags, 's'))
confflags |= CONFFLAG_STARMENU; confflags |= CONFFLAG_STARMENU;
if (strchr(inflags, 't')) if (strchr(inflags, 't'))
confflags |= CONFFLAG_TALKER; confflags |= CONFFLAG_TALKER;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment