Skip to content
Snippets Groups Projects
Commit d03dbf91 authored by James Golovich's avatar James Golovich
Browse files

Add ${LANGUAGE} channel variable (bug #1078)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2210 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 90594b5f
No related branches found
No related tags found
No related merge requests found
......@@ -46,7 +46,7 @@ ${DNID} Dialed Number Identifier
${RDNIS} Redirected Dial Number ID Service
${HANGUPCAUSE} Asterisk hangup cause
${ACCOUNTCODE} Account code (if specified)
${LANGUAGE} Current language
${SIPDOMAIN} SIP destination domain of an inbound call (if appropriate)
There are two reference modes - reference by value and reference by name.
......
......@@ -881,6 +881,9 @@ static void pbx_substitute_variables_temp(struct ast_channel *c,const char *var,
} else if (c && !strcmp(var, "ACCOUNTCODE")) {
strncpy(workspace, c->accountcode, workspacelen - 1);
*ret = workspace;
} else if (c && !strcmp(var, "LANGUAGE")) {
strncpy(workspace, c->language, workspacelen - 1);
*ret = workspace;
} else {
if (c) {
AST_LIST_TRAVERSE(headp,variables,entries) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment