]> git.plutz.net Git - confetti/blobdiff - cgi.sh
improved visual style
[confetti] / cgi.sh
diff --git a/cgi.sh b/cgi.sh
index 676dbc581abcccf9a4da74c979b227e176fd5624..bde75d668fbfb429e1ed50d9809ba37911c8bd72 100755 (executable)
--- a/cgi.sh
+++ b/cgi.sh
@@ -9,7 +9,6 @@ cgi_get() {  # parse HTTP GET string
     val="$(echo "$query" |sed -r 's:^([a-zA-Z0-9_-]*)=(.*)$:\2:')"
     _GET["$key"]="$(echo -e "$(echo "$val" |sed 's:+: :g;s:%:\\x:g')")"
   done
-  debug "$_GET"
 }
 
 cgi_post() {  # parse HTTP POST string
@@ -24,7 +23,5 @@ cgi_post() {  # parse HTTP POST string
     else
       _POST["$key"]="$value"
     fi
-    debug "post($key$n) => $value"
   done
-  debug "$_POST"
 }