summaryrefslogtreecommitdiff
path: root/includes/theme.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-11-17 19:24:39 +0000
committerDries Buytaert <dries@buytaert.net>2003-11-17 19:24:39 +0000
commit7a2514e789126279fb3b6964b887cdffb8c5673f (patch)
tree3bfe1cb843ed452799224e8a20004875a7f3a5b6 /includes/theme.inc
parentfff2f548ac77ac06da132edb013f2e7456cf4393 (diff)
downloadbrdo-7a2514e789126279fb3b6964b887cdffb8c5673f.tar.gz
brdo-7a2514e789126279fb3b6964b887cdffb8c5673f.tar.bz2
- Small improvement to the default style emitted by theme_form_element().
Diffstat (limited to 'includes/theme.inc')
-rw-r--r--includes/theme.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/theme.inc b/includes/theme.inc
index 6dfff30bd..46274ba8d 100644
--- a/includes/theme.inc
+++ b/includes/theme.inc
@@ -156,7 +156,7 @@ function _theme_table_cell($cell, $header = 0) {
**/
function theme_form_element($title, $value, $description = 0) {
- return "<div class=\"form-item\">". ($title ? "<label>$title:</label>" : "") . $value . ($description ? "<div class=\"description\">$description</div>" : "") ."</div>\n";
+ return "<div class=\"form-item\">". ($title ? "<label>$title:</label><br />" : "") . $value . ($description ? "<div class=\"description\">$description</div>" : "") ."</div>\n";
}
/**