It seems that Apache::Request::param returns inputs like
[EMAIL PROTECTED]
as
email=mike [EMAIL PROTECTED]
I can live with that, since + is a reserved character and lots of
apps expect '+' to read as ' '. But the problem is that
[EMAIL PROTECTED]
also comes through as
email=mike [EMAIL PROTECTED]
instead of
[EMAIL PROTECTED]
Now, this seems like double-unescaping to me. I've been looking
through the source to see if I can spot the bug, but maybe someone
out there already knows? where to look?
thanks,
-- Mike