From 12be68075eea8b2f15f08d31726501c3057c7afd Mon Sep 17 00:00:00 2001 From: ryan Date: Fri, 16 Mar 2007 01:20:53 +0000 Subject: [PATCH] More attribute_escape(). git-svn-id: http://svn.automattic.com/wordpress/trunk@5044 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 084d1f45c5..3b571bce5e 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -1280,7 +1280,7 @@ function wp_nonce_ays($action) { if ( $_POST ) { $q = http_build_query($_POST); $q = explode( ini_get('arg_separator.output'), $q); - $html .= "\t
\n"; + $html .= "\t\n"; foreach ( (array) $q as $a ) { $v = substr(strstr($a, '='), 1); $k = substr($a, 0, -(strlen($v)+1));