Re: [Semanticscuttle-devel] regarding "help wanted" post / a first task
Brought to you by:
cweiske
|
From: Christian W. <cw...@cw...> - 2011-02-03 07:10:35
|
Hi Golanor,
> Looks to me like it was simply a case of not encoding the $terms
> string before adding it to the url, so i simply added:
> $terms = rawurlencode($terms);
>
> after the "else" of the search terms (line 88, www/search.php).
Do you mean "urldecode"?
php > echo rawurlencode('foo+bar');
foo%2Bbar
php > echo urldecode('foo+bar');
foo bar
And yes, I'd fix that on the same place.
--
Regards/Mit freundlichen Grüßen
Christian Weiske
-=≡ Geeking around in the name of science since 1982 ≡=-
|