aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xdoc/README.variables2
-rwxr-xr-xpbx.c3
2 files changed, 4 insertions, 1 deletions
diff --git a/doc/README.variables b/doc/README.variables
index e924a8c2e..f33e7836f 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 27a9b1fe2..7e35f0032 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) {