diff --git a/doc/README.variables b/doc/README.variables index e924a8c2ee..f33e7836f6 100755 --- a/doc/README.variables +++ b/doc/README.variables @@ -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. diff --git a/pbx.c b/pbx.c index 27a9b1fe24..7e35f00326 100755 --- a/pbx.c +++ b/pbx.c @@ -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) {