From 81b21bc068d2a3d074bb78f51778b4edc91e55a2 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Mon, 29 Dec 2003 11:16:45 +0000 Subject: - Removed the ID from radio buttons: we'll need to rethink this a bit. --- includes/common.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'includes/common.inc') diff --git a/includes/common.inc b/includes/common.inc index 885781947..035f04ab1 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -730,7 +730,7 @@ function form_group($legend, $group, $description = NULL) { } function form_radio($title, $name, $value = 1, $checked = 0, $description = NULL, $attributes = NULL) { - return theme("form_element", 0, " $title", $description, $name); + return theme("form_element", 0, " $title", $description); } function form_radios($title, $name, $value, $options, $description = NULL) { @@ -738,12 +738,12 @@ function form_radios($title, $name, $value, $options, $description = NULL) { foreach ($options as $key => $choice) { $choices .= " $choice
"; } - return theme("form_element", $title, $choices, $description, $name); + return theme("form_element", $title, $choices, $description); } } function form_checkbox($title, $name, $value = 1, $checked = 0, $description = NULL, $attributes = NULL) { - return form_hidden($name, 0) . theme("form_element", NULL, " $title", $description, $name); + return form_hidden($name, 0) . theme("form_element", NULL, " $title", $description); } function form_textfield($title, $name, $value, $size, $maxlength, $description = NULL, $attributes = NULL) { -- cgit v1.2.3