public_html/layout/professional/search/searchform.thtml
author Dirk Haun <dirk@haun-online.de>
Sat, 07 Nov 2009 21:52:55 +0100
branchHEAD
changeset 7456 4ef1c9a5915c
parent 7018 f3fa64601bb3
child 8461 75a544b48e66
permissions -rw-r--r--
"Refine search" lost the status of the "Titles Only" checkbox
     1                             {search_intro}
     2                             <form action="{site_url}/search.php" method="get">
     3                                 <table cellspacing="0" cellpadding="3">
     4                                     <tr>
     5                                         <td class="alignright">{lang_keywords}:</td>
     6                                         <td>
     7                                             <input type="text" name="query" size="35" maxlength="35" value="{query}"{xhtml}>
     8                                             <select name="keyType">
     9                                                 <option value="phrase" {key_phrase_selected}>{lang_exact_phrase}</option>
    10                                                 <option value="all" {key_all_selected}>{lang_all_words}</option>
    11                                                 <option value="any" {key_any_selected}>{lang_any_word}</option>
    12                                             </select>
    13                                             <input type="checkbox" value="true" name="title"{title_checked}{xhtml}>{lang_titles}
    14                                         </td>
    15                                     </tr>
    16                                     <tr>
    17                                         <td class="alignright">{lang_date}:</td>
    18                                         <td>
    19                                             <input type="text" name="datestart" size="10" maxlength="10" value="{datestart}"{xhtml}> {lang_to} <input type="text" name="dateend" size="10" maxlength="10" value="{dateend}"{xhtml}> {date_format}
    20                                         </td>
    21                                     </tr>
    22                                     <tr>
    23                                         <td class="alignright">{lang_topic}:</td>
    24                                         <td>
    25                                             <select name="topic">
    26                                                 <option selected="selected" value="0">{lang_all}</option>
    27                                                 {topic_option_list}
    28                                             </select>
    29                                         </td>
    30                                     </tr>
    31                                     <tr>
    32                                         <td class="alignright">{lang_type}:</td>
    33                                         <td>
    34                                             <select name="type">
    35                                                 {plugin_types}
    36                                             </select>
    37                                         </td>
    38                                     </tr>
    39                                     {author_form_element}
    40                                     <tr>
    41                                         <td class="alignright">{lang_results}:</td>
    42                                         <td>
    43                                         <select name="results">
    44                                             {search_limits}
    45                                         </select>&nbsp; {lang_per_page}</td>
    46                                     </tr>
    47                                     <tr>
    48                                         <td colspan="2">
    49                                             <input type="submit" value="{lang_search}"{xhtml}>
    50                                             <input type="hidden" name="mode" value="search"{xhtml}>
    51                                         </td>
    52                                     </tr>
    53                                 </table>
    54                             </form>