diff options
author | Or <or@or-laptop.(none)> | 2011-02-10 10:10:02 +0200 |
---|---|---|
committer | Or <or@or-laptop.(none)> | 2011-02-10 10:10:02 +0200 |
commit | 61c04482b2bdee05f933481ef31d3b6764a9ca1e (patch) | |
tree | a754ac91d5aa7295eda4c4d0733da73722efdfe5 | |
parent | 5a8327be1dc3cba69296dbf82c6b2320cc3a0e2f (diff) | |
download | SemanticScuttle-61c04482b2bdee05f933481ef31d3b6764a9ca1e.zip SemanticScuttle-61c04482b2bdee05f933481ef31d3b6764a9ca1e.tar.gz SemanticScuttle-61c04482b2bdee05f933481ef31d3b6764a9ca1e.tar.bz2 |
Fix to Bug no. 3097187 - search with spaces error
-rw-r--r-- | www/search.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/www/search.php b/www/search.php index 3cff550..8175fb2 100644 --- a/www/search.php +++ b/www/search.php @@ -84,6 +84,7 @@ if (is_null($terms)) { // Search terms } else { + $terms = rawurlencode($terms); $tplVars['subtitle'] = T_('Search Results'); $selected = ' selected="selected"'; |