Changes in trunk/src/wp-admin/admin.php [32642:34059]
- File:
-
- 1 edited
-
trunk/src/wp-admin/admin.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/admin.php
r32642 r34059 359 359 } 360 360 361 if ( ! empty( $_REQUEST['action'] ) ) { 361 $_action = wp_validate_action(); 362 if ( ! empty( $_action ) ) { 362 363 /** 363 364 * Fires when an 'action' request variable is sent. 364 365 * 365 * The dynamic portion of the hook name, `$_ REQUEST['action']`,366 * The dynamic portion of the hook name, `$_action`, 366 367 * refers to the action derived from the `GET` or `POST` request. 367 368 * 368 369 * @since 2.6.0 369 370 */ 370 do_action( 'admin_action_' . $_REQUEST['action'] ); 371 } 371 do_action( 'admin_action_' . $_action ); 372 } 373 unset( $_action );
Note: See TracChangeset
for help on using the changeset viewer.