From 9bad647d76bb682ae51ba4b66608ab6e13f19a04 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Fri, 6 Aug 2004 20:18:25 +0000 Subject: [PATCH] - Patch #9819 by JonBob: fixed XHTML bug - make sure the
is always closed. --- includes/common.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/common.inc b/includes/common.inc index 90fe085599b..2f5df9e4861 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -715,8 +715,8 @@ function search_form($action = NULL, $keys = NULL, $options = NULL) { $output .= ' '. t($name); } } - $output .= '
'; } + $output .= ''; return form($output, 'post', $action); }