summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
Diffstat (limited to 'includes')
-rw-r--r--includes/form.inc7
1 files changed, 0 insertions, 7 deletions
diff --git a/includes/form.inc b/includes/form.inc
index 0fd8cf9b1..a907480a8 100644
--- a/includes/form.inc
+++ b/includes/form.inc
@@ -523,7 +523,6 @@ function theme_fieldset($element) {
}
-
/**
* Format a radio button.
*
@@ -691,7 +690,6 @@ function expand_radios($element) {
return $element;
}
-
/**
* Format a form item.
*
@@ -705,7 +703,6 @@ function theme_item($element) {
return theme('form_element', $element['#title'], $element['#value'] . $element['#children'], $element['#description'], $element['#id'], $element['#required'], $element['#error']);
}
-
/**
* Format a checkbox.
*
@@ -765,7 +762,6 @@ function expand_checkboxes($element) {
return $element;
}
-
function theme_submit($element) {
return theme('button', $element);
}
@@ -823,7 +819,6 @@ function theme_form($element) {
return '<form '. $action . ' method="'. $element['#method'] .'" '. drupal_attributes($element['#attributes']) .">\n<div>". $element['#children'] ."\n</div></form>\n";
}
-
/**
* Format a textarea.
*
@@ -861,8 +856,6 @@ function theme_markup($element) {
return $element['#value'] . $element['#children'];
}
-
-
/**
* Format a password field.
*