diff options
author | plegall <plg@piwigo.org> | 2014-06-16 14:17:53 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2014-06-16 14:17:53 +0000 |
commit | 583af81d3d23ab0e3692dd7bb4a36314deab5994 (patch) | |
tree | 9adcf050648d45181cc00eecb95fcd40c211081a /search.php | |
parent | 0511ed2236b1fab9bc9c23b6c3bbee82ee4efdb5 (diff) |
feature 2563: do not display all tags as checkboxes on search.php. Use jQuery Selectize instead.
git-svn-id: http://piwigo.org/svn/trunk@28708 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'search.php')
-rw-r--r-- | search.php | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/search.php b/search.php index 2846d52ed..247430fde 100644 --- a/search.php +++ b/search.php @@ -204,14 +204,7 @@ if (count($available_tags) > 0) { usort( $available_tags, 'tag_alpha_compare'); - $template->assign( - 'TAG_SELECTION', - get_html_tag_selection( - $available_tags, - 'tags', - isset($_POST['tags']) ? $_POST['tags'] : array() - ) - ); + $template->assign('TAGS', $available_tags); } // authors |