]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/index-extra.php
Wordpress 3.3-scripts
[autoinstalls/wordpress.git] / wp-admin / index-extra.php
index efa2526c55eafc5ff65527c910bef19a01287132..bbaea63e571fa678e6231d6c373a0ea058548e28 100644 (file)
@@ -6,6 +6,8 @@
  * @subpackage Administration
  */
 
+define('DOING_AJAX', true);
+
 /** Load WordPress Bootstrap */
 require_once( './admin.php' );
 
@@ -18,23 +20,19 @@ send_nosniff_header();
 switch ( $_GET['jax'] ) {
 
 case 'dashboard_incoming_links' :
-       wp_dashboard_incoming_links_output();
+       wp_dashboard_incoming_links();
        break;
 
 case 'dashboard_primary' :
-       wp_dashboard_rss_output( 'dashboard_primary' );
+       wp_dashboard_primary();
        break;
 
 case 'dashboard_secondary' :
-       wp_dashboard_secondary_output();
+       wp_dashboard_secondary();
        break;
 
 case 'dashboard_plugins' :
-       wp_dashboard_plugins_output();
-       break;
-
-case 'dashboard_quick_press' :
-       wp_dashboard_quick_press_output();
+       wp_dashboard_plugins();
        break;
 
 }