From fb45b6b7dfe840530975a46970966b269bf19339 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Fri, 26 Dec 2003 14:52:29 +0000 Subject: - Removed the ID from radio buttons for now: duplicate IDs confuse the browser. --- includes/common.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'includes/common.inc') diff --git a/includes/common.inc b/includes/common.inc index 7724b02be..e3bbbf841 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -736,7 +736,7 @@ function form_radio($title, $name, $value = 1, $checked = 0, $description = NULL function form_radios($title, $name, $value, $options, $description = NULL) { if (count($options) > 0) { foreach ($options as $key => $choice) { - $choices .= " $choice
"; + $choices .= " $choice
"; } return theme("form_element", $title, $choices, $description, $name); } -- cgit v1.2.3