diff options
author | plegall <plg@piwigo.org> | 2005-09-14 21:57:05 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2005-09-14 21:57:05 +0000 |
commit | 3371c757424cef291be02a946e528983dece9543 (patch) | |
tree | 2ede9c21e065d766d8a3226309635c46b596d77d /search.php | |
parent | eac1724ee5e20967d989916b76fc9076411be758 (diff) |
- improvement: long localized messages are in HTML files instead of $lang
array. This is the case of admin/help and about pages.
- deletion: of unused functions (ts_to_mysqldt, is_image, TN_exists,
check_date_format, date_convert, get_category_directories,
get_used_metadata_list, array_remove, pwg_write_debug,
get_group_restrictions, get_all_group_restrictions, is_group_allowed,
style_select, deprecated_getAttribute).
- new: many new contextual help pages to replace descriptions previously
included in pages.
- modification: reorganisation of language files. Deletion of unused
language keys, alphabetical sort. No faq.lang.php anymore (replaced by
help.html). Only done for en_UK.iso-8859-1.
git-svn-id: http://piwigo.org/svn/trunk@862 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | search.php | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/search.php b/search.php index 877ca4e6b..d65bf2434 100644 --- a/search.php +++ b/search.php @@ -156,18 +156,15 @@ $template->assign_vars(array( 'L_SUBMIT' => $lang['submit'], 'L_RESET' => $lang['reset'], 'L_SEARCH_KEYWORDS'=>$lang['search_keywords'], - 'L_SEARCH_KEYWORDS_HINT'=>$lang['search_keywords_hint'], '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_CATEGORIES_HINT'=>$lang['search_categories_hint'], 'L_SEARCH_SUBFORUMS'=>$lang['search_subcats_included'], 'L_YES' => $lang['yes'], 'L_NO' => $lang['no'], 'L_SEARCH_DATE' => $lang['search_date'], - 'L_SEARCH_DATE_HINT' => $lang['search_date_hint'], 'L_TODAY' => $lang['today'], 'L_SEARCH_DATE_FROM'=>$lang['search_date_from'], 'L_SEARCH_DATE_TO'=>$lang['search_date_to'], @@ -183,7 +180,8 @@ $template->assign_vars(array( 'TODAY_DAY' => date('d', time()), 'TODAY_MONTH' => date('m', time()), 'TODAY_YEAR' => date('Y', time()), - 'S_SEARCH_ACTION' => add_session_id( 'search.php' ), + 'S_SEARCH_ACTION' => add_session_id( 'search.php' ), + 'U_HELP' => PHPWG_ROOT_PATH.'/popuphelp.php?page=search', 'U_HOME' => add_session_id( 'category.php' ) ) ); |