Rollback. fixes #2764
git-svn-id: http://svn.automattic.com/wordpress/branches/2.0@3835 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
627ec22359
commit
bcb92dfc50
|
@ -245,7 +245,8 @@ function check_admin_referer($action = -1) {
|
||||||
$q = explode( ini_get('arg_separator.output'), $q);
|
$q = explode( ini_get('arg_separator.output'), $q);
|
||||||
$html .= "\t<form method='post' action='$pagenow'>\n";
|
$html .= "\t<form method='post' action='$pagenow'>\n";
|
||||||
foreach ( (array) $q as $a ) {
|
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<input type='hidden' name='" . wp_specialchars( urldecode($k), 1 ) . "' value='" . wp_specialchars( urldecode($v), 1 ) . "' />\n";
|
$html .= "\t\t<input type='hidden' name='" . wp_specialchars( urldecode($k), 1 ) . "' value='" . wp_specialchars( urldecode($v), 1 ) . "' />\n";
|
||||||
}
|
}
|
||||||
$html .= "\t\t<input type='hidden' name='_wpnonce' value='" . wp_create_nonce($action) . "' />\n";
|
$html .= "\t\t<input type='hidden' name='_wpnonce' value='" . wp_create_nonce($action) . "' />\n";
|
||||||
|
|
Loading…
Reference in New Issue