aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-12-09 15:45:52 -0800
committerfriendica <info@friendica.com>2013-12-09 15:45:52 -0800
commit70a81d6ad5f2c03277fcdbdc079820946022e8c1 (patch)
treee93c2c6f045fcef4661bdcba2d5078766dae0c82 /mod
parentf85cba10eb3d976d715c7a80fe69fe15d9dc468c (diff)
parent76d8501d671ae7d4234f1a905cd0e506c7f9b23e (diff)
downloadvolse-hubzilla-70a81d6ad5f2c03277fcdbdc079820946022e8c1.tar.gz
volse-hubzilla-70a81d6ad5f2c03277fcdbdc079820946022e8c1.tar.bz2
volse-hubzilla-70a81d6ad5f2c03277fcdbdc079820946022e8c1.zip
Merge branch 'master' of https://github.com/git-marijus/red
Conflicts: view/theme/redbasic/css/style.css
Diffstat (limited to 'mod')
-rw-r--r--mod/search.php2
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";
}