Hi,

I encountered the following problem:

CL-USER> (hunchentoot:url-decode "+")
" "
CL-USER> (hunchentoot:url-encode "+")
"%2B"

But in JavaScript:

>>> encodeURI("+") 
"+"
>>> decodeURI("+") 
"+"

This is a bug?

Andrey