diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-11-07 19:03:35 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-11-07 19:03:35 +0000 |
commit | ef0fa006ed83a10326ff0affc5f83a55fe591836 (patch) | |
tree | 0c31cb244e9614e020af99482e2bc14e1d99ac50 /modules/search/search.module | |
parent | 7b915b3c713d238cfda49900bcbfec231bdbb315 (diff) | |
download | brdo-ef0fa006ed83a10326ff0affc5f83a55fe591836.tar.gz brdo-ef0fa006ed83a10326ff0affc5f83a55fe591836.tar.bz2 |
- Usability improvement: replaced many selection boxes by radio buttons.
Patch by Stefan.
Diffstat (limited to 'modules/search/search.module')
-rw-r--r-- | modules/search/search.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/search/search.module b/modules/search/search.module index 6a2d5eee4..447c5a3c0 100644 --- a/modules/search/search.module +++ b/modules/search/search.module @@ -49,7 +49,7 @@ function search_settings() { $output = form_textfield(t("Minimum word length to index"), "minimum_word_size", variable_get("minimum_word_size", 2), 10, 10, t("The number of characters a word has to be to be indexed. Words shorter than this will not be searchable.")); $output .= form_textfield(t("Minimum word length to search for"), "remove_short", variable_get("remove_short", 0), 10, 10, t("The number of characters a word has to be to be searched for.")); $output .= form_textarea(t("Noise words"), "noisewords", variable_get("noisewords", ""), 70, 10, t("These words will not be indexed, enter comma separated list, linebreaks and whitespace do not matter. Example: and, or, not, a, to, I, it, ...")); - $output .= form_select(t("Help text position"), "help_pos", variable_get("help_pos", 1), array("1" => t("Above search output"), "2" => t("Below search output"), "3" => t("Link from above search output"), "4" => t("Link from below search output")), t("Where to show the help text for users on the search page.")); + $output .= form_radios(t("Help text position"), "help_pos", variable_get("help_pos", 1), array("1" => t("Above search output"), "2" => t("Below search output"), "3" => t("Link from above search output"), "4" => t("Link from below search output")), t("Where to show the help text for users on the search page.")); return $output; } |