diff options
author | Friendika <info@friendika.com> | 2011-10-04 05:19:25 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-10-04 05:19:25 -0700 |
commit | 4a5079f8fb73f65820229783d2ef0e9374e3a743 (patch) | |
tree | a74fa38327f1af1f95d5ad1d473640db5c34af5b /mod/network.php | |
parent | aeb83fa063297db774826f750fcef68904c901a0 (diff) | |
download | volse-hubzilla-4a5079f8fb73f65820229783d2ef0e9374e3a743.tar.gz volse-hubzilla-4a5079f8fb73f65820229783d2ef0e9374e3a743.tar.bz2 volse-hubzilla-4a5079f8fb73f65820229783d2ef0e9374e3a743.zip |
urlescape saved search terms
Diffstat (limited to 'mod/network.php')
-rw-r--r-- | mod/network.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/network.php b/mod/network.php index 371a35402..f0e9e4441 100644 --- a/mod/network.php +++ b/mod/network.php @@ -137,7 +137,7 @@ function saved_searches($search) { if(count($r)) { $o .= '<ul id="saved-search-ul">' . "\r\n"; foreach($r as $rr) { - $o .= '<li class="saved-search-li clear"><a href="network/?f=&remove=1&search=' . $rr['term'] . '" class="icon drophide savedsearchdrop" title="' . t('Remove term') . '" onclick="return confirmDelete();" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a> <a href="network/?f&search=' . $rr['term'] . '" class="savedsearchterm" >' . $rr['term'] . '</a></li>' . "\r\n"; + $o .= '<li class="saved-search-li clear"><a href="network/?f=&remove=1&search=' . $rr['term'] . '" class="icon drophide savedsearchdrop" title="' . t('Remove term') . '" onclick="return confirmDelete();" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a> <a href="network/?f&search=' . urlencode($rr['term']) . '" class="savedsearchterm" >' . $rr['term'] . '</a></li>' . "\r\n"; } $o .= '</ul>'; } |