Superglobals: Revert [34059] until further notice.

see #33837.

Built from https://develop.svn.wordpress.org/trunk@34265


git-svn-id: http://core.svn.wordpress.org/trunk@34229 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Helen Hou-Sandí
2015-09-17 12:33:26 +00:00
parent e13d18969f
commit 48befcf361
13 changed files with 17 additions and 45 deletions

View File

@@ -358,16 +358,14 @@ if ( isset($plugin_page) ) {
}
}
$_action = wp_validate_action();
if ( ! empty( $_action ) ) {
if ( ! empty( $_REQUEST['action'] ) ) {
/**
* Fires when an 'action' request variable is sent.
*
* The dynamic portion of the hook name, `$_action`,
* The dynamic portion of the hook name, `$_REQUEST['action']`,
* refers to the action derived from the `GET` or `POST` request.
*
* @since 2.6.0
*/
do_action( 'admin_action_' . $_action );
do_action( 'admin_action_' . $_REQUEST['action'] );
}
unset( $_action );