Index: wp-ajax.php
===================================================================
--- wp-ajax.php	(revision 0)
+++ wp-ajax.php	(revision 0)
@@ -0,0 +1,22 @@
+<?php
+/**
+ * Execute an AJAX action.
+ *
+ * @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_' . stripslashes($_REQUEST['action']) : false;
+
+if ( !$hook || ! has_action($hook) ) {
+	status_header(400); // invalid request
+	exit;
+}
+
+do_action($hook);
+?>
\ No newline at end of file

Property changes on: wp-ajax.php
___________________________________________________________________
Added: svn:eol-style
   + native


