diff options
author | Friendika <info@friendika.com> | 2011-09-25 22:14:40 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-09-25 22:14:40 -0700 |
commit | 20d4fda22f26a99e7da930be639874f80ae7060d (patch) | |
tree | d7316e23c8d846e41e232fe6e5e5db025d8548fc /mod/search.php | |
parent | c35342dcb6498fa16b3367f524e603806b1e7aa4 (diff) | |
parent | c05178c10529abd402bc48bdc9bd97aaccdebfa6 (diff) | |
download | volse-hubzilla-20d4fda22f26a99e7da930be639874f80ae7060d.tar.gz volse-hubzilla-20d4fda22f26a99e7da930be639874f80ae7060d.tar.bz2 volse-hubzilla-20d4fda22f26a99e7da930be639874f80ae7060d.zip |
Merge branch 'pull'
Diffstat (limited to 'mod/search.php')
-rw-r--r-- | mod/search.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mod/search.php b/mod/search.php index d150b2e1e..2ce3c8dcd 100644 --- a/mod/search.php +++ b/mod/search.php @@ -9,8 +9,9 @@ function search_saved_searches() { ); if(count($r)) { + $o .= '<div id="saved-search-list" class="widget">'; $o .= '<h3>' . t('Saved Searches') . '</h3>' . "\r\n"; - $o .= '<div id="saved-search-list"><ul id="saved-search-ul">' . "\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" >' . $rr['term'] . '</a></li>' . "\r\n"; } @@ -140,7 +141,7 @@ function search_content(&$a) { ); - + $o .= '<h2>Search results for: ' . $search . '</h2>'; $o .= conversation($a,$r,'search',false); |