aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2005-06-17 00:33:00 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2005-06-17 00:33:00 +0000
commit8698db8b5da2eca74fb04b02e86a742fab4d500f (patch)
treed9fc14eb7b148abc23b71e1984a566e24cd9bc7e /doc
parent20cc8387a96393f0583cae71150c6fb3146a0f9c (diff)
Fix expression handling for string comparisions without quotes (bug #4478)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5919 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'doc')
-rwxr-xr-xdoc/README.variables8
1 files changed, 7 insertions, 1 deletions
diff --git a/doc/README.variables b/doc/README.variables
index 3a8a7b48b..1bf900798 100755
--- a/doc/README.variables
+++ b/doc/README.variables
@@ -310,7 +310,13 @@ Of course, all of the above examples use constants, but would work the same if a
numeric or string constants were replaced with a variable reference ${CALLERIDNUM}, for
instance.
-
+__________________________
+NUMBERS VS STRINGS
+--------------------------
+
+Tokens consisting only of numbers are converted to 64-bit numbers for most of the
+operators. This means that overflows can occur when the numbers get above 18 digits.
+Warnings will appear in the logs in this case.
___________________________
CONDITIONALS
---------------------------