Merge pull request #1853 from annando/1508-search-forum

Only offer forum search in local mode
This commit is contained in:
Tobias Diekershoff 2015-08-25 07:10:54 +02:00
commit 445dcd3051
4 changed files with 12 additions and 7 deletions

View file

@ -121,8 +121,10 @@ function nav_info(&$a) {
$nav['searchoption'] = array(
t("Full Text"),
t("Tags"),
t("Contacts"),
t("Forums"));
t("Contacts"));
if (get_config('system','poco_local_search'))
$nav['searchoption'][] = t("Forums");
$gdirpath = 'directory';

View file

@ -998,12 +998,15 @@ function search($s,$id='search-box',$url='/search',$save = false, $aside = true)
'$savedsearch' => feature_enabled(local_user(),'savedsearch'),
);
if (!$aside)
if (!$aside) {
$values['$searchoption'] = array(
t("Full Text"),
t("Tags"),
t("Contacts"),
t("Forums"));
t("Contacts"));
if (get_config('system','poco_local_search'))
$values['$searchoption'][] = t("Forums");
}
return replace_macros(get_markup_template('searchbox.tpl'), $values);
}}