From ef0fa006ed83a10326ff0affc5f83a55fe591836 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Fri, 7 Nov 2003 19:03:35 +0000 Subject: - Usability improvement: replaced many selection boxes by radio buttons. Patch by Stefan. --- modules/title.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/title.module') 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; } -- cgit v1.2.3