aboutsummaryrefslogtreecommitdiffstats
path: root/include/widgets.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-06-03 18:19:27 -0700
committerfriendica <info@friendica.com>2014-06-03 18:19:27 -0700
commit97a4479513130658fffdcc1f8ef0d349f08520bc (patch)
tree4fc3255fe710a4206c719f763e605095ba723bbd /include/widgets.php
parent04cd60a0e3f2999bcd0c990e7a3020d151231cb2 (diff)
downloadvolse-hubzilla-97a4479513130658fffdcc1f8ef0d349f08520bc.tar.gz
volse-hubzilla-97a4479513130658fffdcc1f8ef0d349f08520bc.tar.bz2
volse-hubzilla-97a4479513130658fffdcc1f8ef0d349f08520bc.zip
don't provide a second (actually third counting the navbar) search box on the search page if you've got saved searches turned on. This should solve some problems with duplicate html id's (and save wasn't working anyway). If you don't have saved search ability (which will provide a saved search widget in the sidebar), provide a simple search box in the main content region but without save ability.
Diffstat (limited to 'include/widgets.php')
-rw-r--r--include/widgets.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/widgets.php b/include/widgets.php
index c7a4da6a0..d197eb240 100644
--- a/include/widgets.php
+++ b/include/widgets.php
@@ -264,7 +264,7 @@ function widget_savedsearch($arr) {
$o = replace_macros($tpl, array(
'$title' => t('Saved Searches'),
'$add' => t('add'),
- '$searchbox' => searchbox('','netsearch-box',$srchurl . (($hasq) ? '' : '?f='),true),
+ '$searchbox' => searchbox($search,'netsearch-box',$srchurl . (($hasq) ? '' : '?f='),true),
'$saved' => $saved,
));