summaryrefslogtreecommitdiff
path: root/pbx/ael/ael-test/ael-vtest13
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2007-11-26 23:15:53 +0000
committerMark Michelson <mmichelson@digium.com>2007-11-26 23:15:53 +0000
commit180c3fb60e5681bb5e676bd13d15222dd878997a (patch)
treec377ea63ba01f411187aea74d3dda80b7378e119 /pbx/ael/ael-test/ael-vtest13
parent5f3a28e5881ec6595d3aa119a523aa3d6bd26470 (diff)
Change all instances of "CALLERID(number)" to "CALLERID(num)" for
consistency's sake (closes issue #11381, reported and patched by jon) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@89621 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'pbx/ael/ael-test/ael-vtest13')
-rwxr-xr-xpbx/ael/ael-test/ael-vtest13/extensions.ael4
1 files changed, 2 insertions, 2 deletions
diff --git a/pbx/ael/ael-test/ael-vtest13/extensions.ael b/pbx/ael/ael-test/ael-vtest13/extensions.ael
index dd77c0531..b7e953e62 100755
--- a/pbx/ael/ael-test/ael-vtest13/extensions.ael
+++ b/pbx/ael/ael-test/ael-vtest13/extensions.ael
@@ -1957,7 +1957,7 @@ macro std-priv-exten( dev, ext , timeout, opts, torcont, dontcont )
macro fillcidname()
{
- if( "${CALLERID(number)}" = "" ) // nothing to work with, quit!!!
+ if( "${CALLERID(num)}" = "" ) // nothing to work with, quit!!!
return;
Set(cidn=${DB(cidname/${CALLERID(num)})});
if( "${CALLERID(name)}" != "" )
@@ -1965,7 +1965,7 @@ macro fillcidname()
if( ("${cidn}" = "Privacy Manager" & "${CALLERID(name)}" != "Privacy Manager") | "${cidn}" = "" ) // if the entry isn't in the database,
// or if an entry exists, and it's "Privacy Manager", empty, (or add other useless possibilities).
{
- Set(DB(cidname/${CALLERID(number)})=${CALLERID(name)}); // then set or override what's in the DB
+ Set(DB(cidname/${CALLERID(num)})=${CALLERID(name)}); // then set or override what's in the DB
}
}
// Now, we fill in the callerid info from the incoming entry, if it's stuff worth using