mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-02 16:59:35 +01:00
175c2b6fb1
git-svn-id: http://svn.automattic.com/wordpress/trunk@8618 1a063a9b-81f0-0310-95a4-ce76da25c4cd
32 lines
603 B
PHP
32 lines
603 B
PHP
<?php
|
|
/**
|
|
* WordPress Administration Generic POST Handler.
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Administration
|
|
*/
|
|
|
|
/** We are located in WordPress Administration Panels */
|
|
define('WP_ADMIN', true);
|
|
|
|
if ( defined('ABSPATH') )
|
|
require_once(ABSPATH . 'wp-load.php');
|
|
else
|
|
require_once('../wp-load.php');
|
|
|
|
require_once(ABSPATH . 'wp-admin/includes/admin.php');
|
|
|
|
if ( !wp_validate_auth_cookie() )
|
|
wp_die(__('Cheatin’ uh?'));
|
|
|
|
nocache_headers();
|
|
|
|
do_action('admin_init');
|
|
|
|
$action = 'admin_post';
|
|
if ( !empty($_REQUEST['action']) )
|
|
$action .= '_' . $_REQUEST['action'];
|
|
|
|
do_action($action);
|
|
|
|
?>
|