From 67f7687c3170215baee2f95068ed369dbdb6cf5c Mon Sep 17 00:00:00 2001 From: Neil Drumm Date: Thu, 27 Dec 2007 08:41:52 +0000 Subject: [PATCH] #194652 by Heine: specify explicit accept-charset for forms to avoid browser guessing --- includes/form.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/form.inc b/includes/form.inc index 02e54d1a383b..47ab93f13e98 100644 --- a/includes/form.inc +++ b/includes/form.inc @@ -1430,7 +1430,7 @@ function theme_textfield($element) { function theme_form($element) { // Anonymous div to satisfy XHTML compliance. $action = $element['#action'] ? 'action="' . check_url($element['#action']) . '" ' : ''; - return '
\n
". $element['#children'] ."\n
\n"; + return '
\n
". $element['#children'] ."\n
\n"; } /**