From bcb92dfc50e06e4bf79bd27fc3b11f7800ace548 Mon Sep 17 00:00:00 2001 From: ryan Date: Fri, 2 Jun 2006 05:11:30 +0000 Subject: [PATCH] Rollback. fixes #2764 git-svn-id: http://svn.automattic.com/wordpress/branches/2.0@3835 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/pluggable-functions.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wp-includes/pluggable-functions.php b/wp-includes/pluggable-functions.php index 0a902a5982..f124aa4283 100644 --- a/wp-includes/pluggable-functions.php +++ b/wp-includes/pluggable-functions.php @@ -245,7 +245,8 @@ function check_admin_referer($action = -1) { $q = explode( ini_get('arg_separator.output'), $q); $html .= "\t
\n"; foreach ( (array) $q as $a ) { - list($k, $v) = explode('=', $a, 2); + $v = substr(strstr($a, '='), 1); + $k = substr($a, 0, -(strlen($v)+1)); $html .= "\t\t\n"; } $html .= "\t\t\n";