diff options
author | marijus <mario@localhost.localdomain> | 2013-12-10 00:32:49 +0100 |
---|---|---|
committer | marijus <mario@localhost.localdomain> | 2013-12-10 00:32:49 +0100 |
commit | 76d8501d671ae7d4234f1a905cd0e506c7f9b23e (patch) | |
tree | 3731b6a86621be0f706954a85dd6016793918b2c /mod/search.php | |
parent | 75ebf06131e935795b7072acc012c9e37669eade (diff) | |
download | volse-hubzilla-76d8501d671ae7d4234f1a905cd0e506c7f9b23e.tar.gz volse-hubzilla-76d8501d671ae7d4234f1a905cd0e506c7f9b23e.tar.bz2 volse-hubzilla-76d8501d671ae7d4234f1a905cd0e506c7f9b23e.zip |
saved search icon work and bugfixes for #tags not beeing deletable and save button showing if saved search is disabled
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 bad071936..7651b3a4e 100644 --- a/mod/search.php +++ b/mod/search.php @@ -17,7 +17,7 @@ function search_saved_searches() { $o .= '<h3>' . t('Saved Searches') . '</h3>' . "\r\n"; $o .= '<ul id="saved-search-ul">' . "\r\n"; foreach($r as $rr) { - $o .= '<li class="saved-search-li clear"><a href="search/?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="search/?f=&search=' . $rr['term'] . '" class="savedsearchterm" >' . htmlspecialchars($rr['term']) . '</a></li>' . "\r\n"; + $o .= '<li class="saved-search-li clear"><a href="search/?f=&remove=1&search=' . rawurlencode($rr['term']) . '" title="' . t('Remove term') . '" onclick="return confirmDelete();"><i class="icon-remove drop-icons"></i></a> <a href="search/?f=&search=' . $rr['term'] . '" class="savedsearchterm" >' . htmlspecialchars($rr['term']) . '</a></li>' . "\r\n"; } $o .= '</ul><div class="clear"></div></div>' . "\r\n"; } |