Subject: | remove new lines from parsed queries |
Test case:
"http://www.google.es/search?sourceid=navclient&hl=es&ie=UTF-8&rlz=1T4GZEZ_esES258ES258&q=Urbanizaci%c3%b3n+Las+Encinas+%0d%0aBoadilla+del+Monte"
When URI unescaped you will find a newline in the query. I think this is
unexpected output with any search engine. Can you remove or map those?
In my local copy I added
$query =~ s![\n\r]!!g;
thanks