aboutsummaryrefslogtreecommitdiffstats
path: root/UPGRADE.txt
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-28 15:10:19 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-28 15:10:19 +0000
commit42d036b2d19fea144f004efb7822821c99ad2a2d (patch)
tree12fe06076c0a473f066a3047bc8cf238b9f367c3 /UPGRADE.txt
parent7c08dc20b84e358b08fe232086630e675a55423c (diff)
Deprecate SetGlobalVar, replacing it with a dialplan function
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@30677 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'UPGRADE.txt')
-rw-r--r--UPGRADE.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/UPGRADE.txt b/UPGRADE.txt
index eb96d653f..e44341426 100644
--- a/UPGRADE.txt
+++ b/UPGRADE.txt
@@ -75,6 +75,12 @@ Applications:
been removed in this version. You should use the equivalent dialplan
function in places where you have previously used one of these applications.
+* The application SetGlobalVar has been deprecated. You should replace uses
+ of this application with the following combination of Set and GLOBAL():
+ Set(GLOBAL(name)=value). You may also access global variables exclusively by
+ using the GLOBAL() dialplan function, instead of relying on variable
+ interpolation falling back to globals when no channel variable is set.
+
* The application SetVar has been renamed to Set. The syntax SetVar was marked
deprecated in version 1.2 and is no longer recognized in this version.