aboutsummaryrefslogtreecommitdiffstats
path: root/search.php
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2006-04-05 02:01:36 +0000
committerrvelices <rv-github@modusoptimus.com>2006-04-05 02:01:36 +0000
commitbdceff32bcdd7a6ed72697384148577da4bc71d1 (patch)
tree10a99a67fa7c8685aab8bb213a4c0252bd48d30a /search.php
parentdb80e86df1d0708c18255c7e993a224ce6589b2a (diff)
image sort order for tags
very minor code and language simplifications and corrections git-svn-id: http://piwigo.org/svn/trunk@1125 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'search.php')
-rw-r--r--search.php43
1 files changed, 11 insertions, 32 deletions
diff --git a/search.php b/search.php
index 2d6ce0c8f..cc461f6df 100644
--- a/search.php
+++ b/search.php
@@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+
// | PhpWebGallery - a PHP based picture gallery |
// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
-// | Copyright (C) 2003-2005 PhpWebGallery Team - http://phpwebgallery.net |
+// | Copyright (C) 2003-2006 PhpWebGallery Team - http://phpwebgallery.net |
// +-----------------------------------------------------------------------+
// | branch : BSF (Best So Far)
// | file : $RCSfile$
@@ -72,7 +72,7 @@ if (isset($_POST['submit']))
'mode' => $_POST['tag_mode'],
);
}
-
+
if ($_POST['search_author'])
{
$search['fields']['author'] = array(
@@ -176,32 +176,15 @@ $page['body_id'] = 'theSearchPage';
include(PHPWG_ROOT_PATH.'include/page_header.php');
$template->set_filenames( array('search'=>'search.tpl') );
-$template->assign_vars(array(
- 'L_SEARCH_TITLE' => $lang['search_title'],
- 'L_SEARCH_OPTIONS' => $lang['search_options'],
- 'L_RETURN' => $lang['home'],
- 'L_SUBMIT' => $lang['submit'],
- 'L_RESET' => $lang['reset'],
- 'L_SEARCH_KEYWORDS'=>$lang['search_keywords'],
- 'L_SEARCH_ANY_TERMS'=>$lang['search_mode_or'],
- 'L_SEARCH_ALL_TERMS'=>$lang['search_mode_and'],
- 'L_SEARCH_AUTHOR'=>$lang['search_author'],
- 'L_SEARCH_AUTHOR_HINT'=>$lang['search_explain'],
- 'L_SEARCH_CATEGORIES'=>$lang['search_categories'],
- 'L_SEARCH_SUBFORUMS'=>$lang['search_subcats_included'],
- 'L_YES' => $lang['yes'],
- 'L_NO' => $lang['no'],
- 'L_SEARCH_DATE' => $lang['search_date'],
- 'L_TODAY' => $lang['today'],
- 'L_SEARCH_DATE_FROM'=>$lang['search_date_from'],
- 'L_SEARCH_DATE_TO'=>$lang['search_date_to'],
- 'L_DAYS'=>$lang['days'],
- 'L_MONTH'=>$lang['w_month'],
- 'L_SEARCH_DATE_TYPE'=>$lang['search_date_type'],
- 'L_RESULT_SORT'=>$lang['search_sort'],
- 'L_SORT_ASCENDING'=>$lang['search_ascending'],
- 'L_SORT_DESCENDING'=>$lang['search_descending'],
+$available_tags = get_available_tags(
+ isset($user['forbidden_categories'])
+ ? explode(',', $user['forbidden_categories'])
+ : null
+ );
+usort( $available_tags, 'name_compare');
+
+$template->assign_vars(array(
'TODAY_DAY' => date('d', time()),
'TODAY_MONTH' => date('m', time()),
'TODAY_YEAR' => date('Y', time()),
@@ -210,11 +193,7 @@ $template->assign_vars(array(
'U_HOME' => make_index_url(),
'TAG_SELECTION' => get_html_tag_selection(
- get_available_tags(
- isset($user['forbidden_categories'])
- ? explode(',', $user['forbidden_categories'])
- : null
- ),
+ $available_tags,
'tags',
isset($_POST['tags']) ? $_POST['tags'] : array()
),