summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-08-06 20:18:25 +0000
committerDries Buytaert <dries@buytaert.net>2004-08-06 20:18:25 +0000
commit9bad647d76bb682ae51ba4b66608ab6e13f19a04 (patch)
tree1ea510b4864270ace3cbc70738ec3c1fc56d6ede
parent9bbdb71ee4ccc1cf5433d8c21c8d96f668f81d2b (diff)
downloadbrdo-9bad647d76bb682ae51ba4b66608ab6e13f19a04.tar.gz
brdo-9bad647d76bb682ae51ba4b66608ab6e13f19a04.tar.bz2
- Patch #9819 by JonBob: fixed XHTML bug - make sure the <div> is always closed.
-rw-r--r--includes/common.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/common.inc b/includes/common.inc
index 90fe08559..2f5df9e48 100644
--- a/includes/common.inc
+++ b/includes/common.inc
@@ -715,8 +715,8 @@ function search_form($action = NULL, $keys = NULL, $options = NULL) {
$output .= ' <input type="checkbox" name="edit[type]['. $name .']" '. ($edit['type'][$name] ? ' checked="checked"' : '') .' /> '. t($name);
}
}
- $output .= '</div>';
}
+ $output .= '</div>';
return form($output, 'post', $action);
}