From 6691d89275bd5251661d307bd5b5cc9ce7699b16 Mon Sep 17 00:00:00 2001 From: Jonas Smedegaard Date: Tue, 23 Nov 2010 05:39:55 +0100 Subject: Avoid lowercasing in uriunescape(). --- localkannel-dispatch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/localkannel-dispatch b/localkannel-dispatch index 26edfb1..7378534 100755 --- a/localkannel-dispatch +++ b/localkannel-dispatch @@ -38,7 +38,7 @@ uriunescape() { if [ 0 = "$urldecode" ]; then echo "$@" else - echo "$@" | perl -e 'use URI::Escape; print lc(uri_unescape());' + echo "$@" | perl -e 'use URI::Escape; print uri_unescape();' fi } -- cgit v1.2.3