diff options
author | Friendika <info@friendika.com> | 2010-11-24 19:25:47 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-11-24 19:25:47 -0800 |
commit | 9d7130e40382c316f5430ace4b9ca16a998a7432 (patch) | |
tree | 691dfc2d881b20f14784bc889b8e4d02dc99aa58 /mod/search.php | |
parent | d855371fa5509506a85a150b3edb56277e1212e0 (diff) | |
download | volse-hubzilla-9d7130e40382c316f5430ace4b9ca16a998a7432.tar.gz volse-hubzilla-9d7130e40382c316f5430ace4b9ca16a998a7432.tar.bz2 volse-hubzilla-9d7130e40382c316f5430ace4b9ca16a998a7432.zip |
tag search boolean mode
Diffstat (limited to 'mod/search.php')
-rw-r--r-- | mod/search.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/search.php b/mod/search.php index 19bf6b964..78a4a3d53 100644 --- a/mod/search.php +++ b/mod/search.php @@ -7,7 +7,7 @@ function search_content(&$a) { $o .= '<h3>' . t('Search') . '</h3>'; - $search = ((x($_GET,'search')) ? $_GET['search'] : ''); + $search = ((x($_GET,'search')) ? rawurldecode($_GET['search']) : ''); $o .= search($search); |