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/title.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/title.module')
-rw-r--r-- | modules/title.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/title.module b/modules/title.module index 47c956c3e..6dbd63040 100644 --- a/modules/title.module +++ b/modules/title.module @@ -75,7 +75,7 @@ function title_filter($text) { } function title_conf_filters() { - $output = form_select(t("Enable node link tags"), "title_filter_link", variable_get("title_filter_link", 0), array(t("Disabled"), t("Enabled")), t("Enable Wiki-like [node title|text] links. This will generate a link labeled 'text' to the node with the title 'node title'. If you omit '|text', the label becomes 'node title'. You may use a substring of a node title if desired. When multiple matching titles are found, a list of matching nodes will be displayed. If no matching titles are found, a full-text search is returned.")); + $output = form_radios(t("Enable node link tags"), "title_filter_link", variable_get("title_filter_link", 0), array(t("Disabled"), t("Enabled")), t("Enable Wiki-like [node title|text] links. This will generate a link labeled 'text' to the node with the title 'node title'. If you omit '|text', the label becomes 'node title'. You may use a substring of a node title if desired. When multiple matching titles are found, a list of matching nodes will be displayed. If no matching titles are found, a full-text search is returned.")); return $output; } |