From 6222fd687272fbc4390911dc2e0cba176fcdac1c Mon Sep 17 00:00:00 2001 From: deajan Date: Mon, 9 Jul 2018 15:01:45 +0200 Subject: [PATCH] Fixed variable leak --- dev/ofunctions.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev/ofunctions.sh b/dev/ofunctions.sh index 1cd9047..f282b35 100644 --- a/dev/ofunctions.sh +++ b/dev/ofunctions.sh @@ -8,7 +8,7 @@ #### OFUNCTIONS FULL SUBSET #### #### OFUNCTIONS MINI SUBSET #### _OFUNCTIONS_VERSION=2.3.0-dev -_OFUNCTIONS_BUILD=2018070901 +_OFUNCTIONS_BUILD=2018070902 #### _OFUNCTIONS_BOOTSTRAP SUBSET #### _OFUNCTIONS_BOOTSTRAP=true #### _OFUNCTIONS_BOOTSTRAP SUBSET END #### @@ -1359,6 +1359,8 @@ function CheckRFC822 { function UrlEncode { local length="${#1}" + local i + local LANG=C for i in $(seq 0 $((length-1))); do local c="${1:i:1}"