svn:eol-style:native props Denis-de-Bernardy

git-svn-id: http://svn.automattic.com/wordpress/trunk@13530 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
dd32 2010-03-01 12:23:55 +00:00
parent 90637984b6
commit bc84ed40cb
1 changed files with 29 additions and 29 deletions

View File

@ -1,30 +1,30 @@
<?php
/**
* Execute an AJAX action.
*
* To take full advantage of this file, call wp_ajaxurl(); in your theme
* or plugin while registering your front-end scripts. Doing so will make
* an ajaxurl variable available for use in javascripts. The ajaxurl
* variable will point to this file's absolute URL.
*
* In the admin area, an ajaxurl variable is always available, and points
* to wp-admin/admin-ajax.php instead.
*
* @since 3.0
*/
define('DOING_AJAX', true);
require_once('wp-load.php');
@header('Content-Type: text/html; charset=' . get_option('blog_charset'));
do_action('ajax_init');
$hook = !empty($_REQUEST['action']) ? 'ajax_' . $_REQUEST['action'] : false;
if ( empty($hook) || ! has_action($hook) ) {
status_header(400);
exit;
}
do_action($hook);
<?php
/**
* Execute an AJAX action.
*
* To take full advantage of this file, call wp_ajaxurl(); in your theme
* or plugin while registering your front-end scripts. Doing so will make
* an ajaxurl variable available for use in javascripts. The ajaxurl
* variable will point to this file's absolute URL.
*
* In the admin area, an ajaxurl variable is always available, and points
* to wp-admin/admin-ajax.php instead.
*
* @since 3.0
*/
define('DOING_AJAX', true);
require_once('wp-load.php');
@header('Content-Type: text/html; charset=' . get_option('blog_charset'));
do_action('ajax_init');
$hook = !empty($_REQUEST['action']) ? 'ajax_' . $_REQUEST['action'] : false;
if ( empty($hook) || ! has_action($hook) ) {
status_header(400);
exit;
}
do_action($hook);
?>