]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/admin-ajax.php
Wizard 2.8.2-scripts
[autoinstalls/wordpress.git] / wp-admin / admin-ajax.php
index b72ff61dcddb7bef04b72eee29910ced2527d0b9..7f04dd7d1473714701897d98f7621c400edddd3c 100644 (file)
@@ -16,6 +16,9 @@ define('WP_ADMIN', true);
 
 require_once('../wp-load.php');
 require_once('includes/admin.php');
+@header('Content-Type: text/html; charset=' . get_option('blog_charset'));
+
+do_action('admin_init');
 
 if ( ! is_user_logged_in() ) {
 
@@ -34,17 +37,25 @@ if ( ! is_user_logged_in() ) {
                        $x->send();
        }
 
+       if ( !empty( $_POST['action']) )
+               do_action( 'wp_ajax_nopriv_' . $_POST['action'] );
+
        die('-1');
 }
 
 if ( isset( $_GET['action'] ) ) :
 switch ( $action = $_GET['action'] ) :
 case 'ajax-tag-search' :
-       if ( !current_user_can( 'manage_categories' ) )
+       if ( !current_user_can( 'edit_posts' ) )
                die('-1');
 
        $s = $_GET['q']; // is this slashed already?
 
+       if ( isset($_GET['tax']) )
+               $taxonomy = sanitize_title($_GET['tax']);
+       else
+               die('0');
+
        if ( false !== strpos( $s, ',' ) ) {
                $s = explode( ',', $s );
                $s = $s[count( $s ) - 1];
@@ -52,10 +63,54 @@ case 'ajax-tag-search' :
        $s = trim( $s );
        if ( strlen( $s ) < 2 )
                die; // require 2 chars for matching
-       $results = $wpdb->get_col( "SELECT t.name FROM $wpdb->term_taxonomy AS tt INNER JOIN $wpdb->terms AS t ON tt.term_id = t.term_id WHERE tt.taxonomy = 'post_tag' AND t.name LIKE ('%". $s . "%')" );
+
+       $results = $wpdb->get_col( "SELECT t.name FROM $wpdb->term_taxonomy AS tt INNER JOIN $wpdb->terms AS t ON tt.term_id = t.term_id WHERE tt.taxonomy = '$taxonomy' AND t.name LIKE ('%" . $s . "%')" );
+
        echo join( $results, "\n" );
        die;
        break;
+case 'wp-compression-test' :
+       if ( !current_user_can( 'manage_options' ) )
+               die('-1');
+
+       if ( ini_get('zlib.output_compression') || 'ob_gzhandler' == ini_get('output_handler') ) {
+               update_site_option('can_compress_scripts', 0);
+               die('0');
+       }
+
+       if ( isset($_GET['test']) ) {
+               header( 'Expires: Wed, 11 Jan 1984 05:00:00 GMT' );
+               header( 'Last-Modified: ' . gmdate( 'D, d M Y H:i:s' ) . ' GMT' );
+               header( 'Cache-Control: no-cache, must-revalidate, max-age=0' );
+               header( 'Pragma: no-cache' );
+               header('Content-Type: application/x-javascript; charset=UTF-8');
+               $force_gzip = ( defined('ENFORCE_GZIP') && ENFORCE_GZIP );
+               $test_str = '"wpCompressionTest Lorem ipsum dolor sit amet consectetuer mollis sapien urna ut a. Eu nonummy condimentum fringilla tempor pretium platea vel nibh netus Maecenas. Hac molestie amet justo quis pellentesque est ultrices interdum nibh Morbi. Cras mattis pretium Phasellus ante ipsum ipsum ut sociis Suspendisse Lorem. Ante et non molestie. Porta urna Vestibulum egestas id congue nibh eu risus gravida sit. Ac augue auctor Ut et non a elit massa id sodales. Elit eu Nulla at nibh adipiscing mattis lacus mauris at tempus. Netus nibh quis suscipit nec feugiat eget sed lorem et urna. Pellentesque lacus at ut massa consectetuer ligula ut auctor semper Pellentesque. Ut metus massa nibh quam Curabitur molestie nec mauris congue. Volutpat molestie elit justo facilisis neque ac risus Ut nascetur tristique. Vitae sit lorem tellus et quis Phasellus lacus tincidunt nunc Fusce. Pharetra wisi Suspendisse mus sagittis libero lacinia Integer consequat ac Phasellus. Et urna ac cursus tortor aliquam Aliquam amet tellus volutpat Vestibulum. Justo interdum condimentum In augue congue tellus sollicitudin Quisque quis nibh."';
+
+                if ( 1 == $_GET['test'] ) {
+                       echo $test_str;
+                       die;
+                } elseif ( 2 == $_GET['test'] ) {
+                       if ( false !== strpos( strtolower($_SERVER['HTTP_ACCEPT_ENCODING']), 'deflate') && function_exists('gzdeflate') && ! $force_gzip ) {
+                               header('Content-Encoding: deflate');
+                               $out = gzdeflate( $test_str, 1 );
+                       } elseif ( false !== strpos( strtolower($_SERVER['HTTP_ACCEPT_ENCODING']), 'gzip') && function_exists('gzencode') ) {
+                               header('Content-Encoding: gzip');
+                               $out = gzencode( $test_str, 1 );
+                       } else {
+                               die('-1');
+                       }
+                       echo $out;
+                       die;
+               } elseif ( 'no' == $_GET['test'] ) {
+                       update_site_option('can_compress_scripts', 0);
+               } elseif ( 'yes' == $_GET['test'] ) {
+                       update_site_option('can_compress_scripts', 1);
+               }
+       }
+
+       die('0');
+       break;
 default :
        do_action( 'wp_ajax_' . $_GET['action'] );
        die('0');
@@ -63,24 +118,85 @@ default :
 endswitch;
 endif;
 
+/**
+ * Sends back current comment total and new page links if they need to be updated.
+ *
+ * Contrary to normal success AJAX response ("1"), die with time() on success.
+ *
+ * @since 2.7
+ *
+ * @param int $comment_id
+ * @return die
+ */
+function _wp_ajax_delete_comment_response( $comment_id ) {
+       $total = (int) @$_POST['_total'];
+       $per_page = (int) @$_POST['_per_page'];
+       $page = (int) @$_POST['_page'];
+       $url = esc_url_raw( @$_POST['_url'] );
+       // JS didn't send us everything we need to know. Just die with success message
+       if ( !$total || !$per_page || !$page || !$url )
+               die( (string) time() );
+
+       if ( --$total < 0 ) // Take the total from POST and decrement it (since we just deleted one)
+               $total = 0;
+
+       if ( 0 != $total % $per_page && 1 != mt_rand( 1, $per_page ) ) // Only do the expensive stuff on a page-break, and about 1 other time per page
+               die( (string) time() );
+
+       $status = 'total_comments'; // What type of comment count are we looking for?
+       $parsed = parse_url( $url );
+       if ( isset( $parsed['query'] ) ) {
+               parse_str( $parsed['query'], $query_vars );
+               if ( !empty( $query_vars['comment_status'] ) )
+                       $status = $query_vars['comment_status'];
+       }
+
+       $comment_count = wp_count_comments();
+       $time = time(); // The time since the last comment count
+
+       if ( isset( $comment_count->$status ) ) // We're looking for a known type of comment count
+               $total = $comment_count->$status;
+       // else use the decremented value from above
+
+       $page_links = paginate_links( array(
+               'base' => add_query_arg( 'apage', '%#%', $url ),
+               'format' => '',
+               'prev_text' => __('&laquo;'),
+               'next_text' => __('&raquo;'),
+               'total' => ceil($total / $per_page),
+               'current' => $page
+       ) );
+       $x = new WP_Ajax_Response( array(
+               'what' => 'comment',
+               'id' => $comment_id, // here for completeness - not used
+               'supplemental' => array(
+                       'pageLinks' => $page_links,
+                       'total' => $total,
+                       'time' => $time
+               )
+       ) );
+       $x->send();
+}
+
 $id = isset($_POST['id'])? (int) $_POST['id'] : 0;
 switch ( $action = $_POST['action'] ) :
-case 'delete-comment' :
+case 'delete-comment' : // On success, die with time() instead of 1
        check_ajax_referer( "delete-comment_$id" );
        if ( !$comment = get_comment( $id ) )
-               die('1');
+               die( (string) time() );
        if ( !current_user_can( 'edit_post', $comment->comment_post_ID ) )
                die('-1');
 
        if ( isset($_POST['spam']) && 1 == $_POST['spam'] ) {
                if ( 'spam' == wp_get_comment_status( $comment->comment_ID ) )
-                       die('1');
+                       die( (string) time() );
                $r = wp_set_comment_status( $comment->comment_ID, 'spam' );
        } else {
                $r = wp_delete_comment( $comment->comment_ID );
        }
-
-       die( $r ? '1' : '0' );
+       if ( $r ) // Decide if we need to send back '1' or a more complicated response including page links and comment counts
+               _wp_ajax_delete_comment_response( $comment->comment_ID );
+       die( '0' );
        break;
 case 'delete-cat' :
        check_ajax_referer( "delete-category_$id" );
@@ -101,11 +217,16 @@ case 'delete-tag' :
        if ( !current_user_can( 'manage_categories' ) )
                die('-1');
 
-       $tag = get_term( $id, 'post_tag' );
+       if ( !empty($_POST['taxonomy']) )
+               $taxonomy = $_POST['taxonomy'];
+       else
+               $taxonomy = 'post_tag';
+
+       $tag = get_term( $id, $taxonomy );
        if ( !$tag || is_wp_error( $tag ) )
                die('1');
 
-       if ( wp_delete_term($id, 'post_tag'))
+       if ( wp_delete_term($id, $taxonomy))
                die('1');
        else
                die('0');
@@ -121,8 +242,10 @@ case 'delete-link-cat' :
 
        $cat_name = get_term_field('name', $id, 'link_category');
 
+       $default = get_option('default_link_category');
+
        // Don't delete the default cats.
-       if ( $id == get_option('default_link_category') ) {
+       if ( $id == $default ) {
                $x = new WP_AJAX_Response( array(
                        'what' => 'link-cat',
                        'id' => $id,
@@ -131,7 +254,7 @@ case 'delete-link-cat' :
                $x->send();
        }
 
-       $r = wp_delete_term($id, 'link_category');
+       $r = wp_delete_term($id, 'link_category', array('default' => $default));
        if ( !$r )
                die('0');
        if ( is_wp_error($r) ) {
@@ -195,9 +318,15 @@ case 'delete-page' :
        else
                die('0');
        break;
-case 'dim-comment' :
-       if ( !$comment = get_comment( $id ) )
-               die('0');
+case 'dim-comment' : // On success, die with time() instead of 1
+
+       if ( !$comment = get_comment( $id ) ) {
+               $x = new WP_Ajax_Response( array(
+                       'what' => 'comment',
+                       'id' => new WP_Error('invalid_comment', sprintf(__('Comment %d does not exist'), $id))
+               ) );
+               $x->send();
+       }
 
        if ( !current_user_can( 'edit_post', $comment->comment_post_ID ) )
                die('-1');
@@ -206,18 +335,27 @@ case 'dim-comment' :
 
        $current = wp_get_comment_status( $comment->comment_ID );
        if ( $_POST['new'] == $current )
-               die('1');
+               die( (string) time() );
 
+       $r = 0;
        if ( in_array( $current, array( 'unapproved', 'spam' ) ) ) {
                check_ajax_referer( "approve-comment_$id" );
-               if ( wp_set_comment_status( $comment->comment_ID, 'approve' ) )
-                       die('1');
+               $result = wp_set_comment_status( $comment->comment_ID, 'approve', true );
        } else {
                check_ajax_referer( "unapprove-comment_$id" );
-               if ( wp_set_comment_status( $comment->comment_ID, 'hold' ) )
-                       die('1');
+               $result = wp_set_comment_status( $comment->comment_ID, 'hold', true );
        }
-       die('0');
+       if ( is_wp_error($result) ) {
+               $x = new WP_Ajax_Response( array(
+                       'what' => 'comment',
+                       'id' => $result
+               ) );
+               $x->send();
+       }
+
+       // Decide if we need to send back '1' or a more complicated response including page links and comment counts
+       _wp_ajax_delete_comment_response( $comment->comment_ID );
+       die( '0' );
        break;
 case 'add-category' : // On the Fly
        check_ajax_referer( $action );
@@ -286,11 +424,11 @@ case 'add-link-category' : // On the Fly
                        $cat_id = wp_insert_term( $cat_name, 'link_category' );
                }
                $cat_id = $cat_id['term_id'];
-               $cat_name = wp_specialchars(stripslashes($cat_name));
+               $cat_name = esc_html(stripslashes($cat_name));
                $x->add( array(
                        'what' => 'link-category',
                        'id' => $cat_id,
-                       'data' => "<li id='link-category-$cat_id'><label for='in-link-category-$cat_id' class='selectit'><input value='$cat_id' type='checkbox' checked='checked' name='link_category[]' id='in-link-category-$cat_id'/> $cat_name</label></li>",
+                       'data' => "<li id='link-category-$cat_id'><label for='in-link-category-$cat_id' class='selectit'><input value='" . esc_attr($cat_id) . "' type='checkbox' checked='checked' name='link_category[]' id='in-link-category-$cat_id'/> $cat_name</label></li>",
                        'position' => -1
                ) );
        }
@@ -309,7 +447,7 @@ case 'add-cat' : // From Manage->Categories
                $x->send();
        }
 
-       if ( category_exists( trim( $_POST['cat_name'] ) ) ) {
+       if ( category_exists( trim( $_POST['cat_name'] ), $_POST['category_parent'] ) ) {
                $x = new WP_Ajax_Response( array(
                        'what' => 'cat',
                        'id' => new WP_Error( 'cat_exists', __('The category you are trying to create already exists.'), array( 'form-field' => 'cat_name' ) ),
@@ -338,7 +476,7 @@ case 'add-cat' : // From Manage->Categories
                $cat_full_name = $_cat->name . ' &#8212; ' . $cat_full_name;
                $level++;
        }
-       $cat_full_name = attribute_escape($cat_full_name);
+       $cat_full_name = esc_attr($cat_full_name);
 
        $x = new WP_Ajax_Response( array(
                'what' => 'cat',
@@ -397,7 +535,12 @@ case 'add-tag' : // From Manage->Tags
                $x->send();
        }
 
-       $tag = wp_insert_term($_POST['name'], 'post_tag', $_POST );
+       if ( !empty($_POST['taxonomy']) )
+               $taxonomy = $_POST['taxonomy'];
+       else
+               $taxonomy = 'post_tag';
+
+       $tag = wp_insert_term($_POST['name'], $taxonomy, $_POST );
 
        if ( is_wp_error($tag) ) {
                $x = new WP_Ajax_Response( array(
@@ -407,26 +550,31 @@ case 'add-tag' : // From Manage->Tags
                $x->send();
        }
 
-       if ( !$tag || (!$tag = get_term( $tag['term_id'], 'post_tag' )) )
+       if ( !$tag || (!$tag = get_term( $tag['term_id'], $taxonomy )) )
                die('0');
 
        $tag_full_name = $tag->name;
-       $tag_full_name = attribute_escape($tag_full_name);
+       $tag_full_name = esc_attr($tag_full_name);
 
        $x = new WP_Ajax_Response( array(
                'what' => 'tag',
                'id' => $tag->term_id,
                'position' => '-1',
-               'data' => _tag_row( $tag ),
+               'data' => _tag_row( $tag, '', $taxonomy ),
                'supplemental' => array('name' => $tag_full_name, 'show-link' => sprintf(__( 'Tag <a href="#%s">%s</a> added' ), "tag-$tag->term_id", $tag_full_name))
        ) );
        $x->send();
        break;
 case 'get-tagcloud' :
-       if ( !current_user_can( 'manage_categories' ) )
+       if ( !current_user_can( 'edit_posts' ) )
                die('-1');
 
-       $tags = get_tags( array( 'number' => 45, 'orderby' => 'count', 'order' => 'DESC' ) );
+       if ( isset($_POST['tax']) )
+               $taxonomy = sanitize_title($_POST['tax']);
+       else
+               die('0');
+
+       $tags = get_terms( $taxonomy, array( 'number' => 45, 'orderby' => 'count', 'order' => 'DESC' ) );
 
        if ( empty( $tags ) )
                die( __('No tags found!') );
@@ -439,7 +587,8 @@ case 'get-tagcloud' :
                $tags[ $key ]->id = $tag->term_id;
        }
 
-       $return = wp_generate_tag_cloud( $tags );
+       // We need raw tag names here, so don't filter the output
+       $return = wp_generate_tag_cloud( $tags, array('filter' => 0) );
 
        if ( empty($return) )
                die('0');
@@ -453,8 +602,12 @@ case 'add-comment' :
        if ( !current_user_can( 'edit_post', $id ) )
                die('-1');
        $search = isset($_POST['s']) ? $_POST['s'] : false;
-       $start = isset($_POST['page']) ? intval($_POST['page']) * 25 - 1: 24;
-       $status = isset($_POST['comment_status']) ? $_POST['comment_status'] : false;
+       $status = isset($_POST['comment_status']) ? $_POST['comment_status'] : 'all';
+       $per_page = isset($_POST['per_page']) ?  (int) $_POST['per_page'] + 8 : 28;
+       $start = isset($_POST['page']) ? ( intval($_POST['page']) * $per_page ) -1 : $per_page - 1;
+       if ( 1 > $start )
+               $start = 27;
+
        $mode = isset($_POST['mode']) ? $_POST['mode'] : 'detail';
        $p = isset($_POST['p']) ? $_POST['p'] : 0;
        $comment_type = isset($_POST['comment_type']) ? $_POST['comment_type'] : '';
@@ -596,6 +749,7 @@ case 'edit-comment' :
        $mode = ( isset($_POST['mode']) && 'single' == $_POST['mode'] ) ? 'single' : 'detail';
        $position = ( isset($_POST['position']) && (int) $_POST['position']) ? (int) $_POST['position'] : '-1';
        $checkbox = ( isset($_POST['checkbox']) && true == $_POST['checkbox'] ) ? 1 : 0;
+       $comments_listing = isset($_POST['comments_listing']) ? $_POST['comments_listing'] : '';
 
        if ( get_option('show_avatars') && 'single' != $mode )
                add_filter( 'comment_author', 'floated_admin_avatar' );
@@ -603,7 +757,7 @@ case 'edit-comment' :
        $x = new WP_Ajax_Response();
 
        ob_start();
-               _wp_comment_row( $comment_id, $mode, true, $checkbox );
+               _wp_comment_row( $comment_id, $mode, $comments_listing, $checkbox );
                $comment_list_item = ob_get_contents();
        ob_end_clean();
 
@@ -623,7 +777,7 @@ case 'add-meta' :
        if ( isset($_POST['metakeyselect']) || isset($_POST['metakeyinput']) ) {
                if ( !current_user_can( 'edit_post', $pid ) )
                        die('-1');
-               if ( '#NONE#' == $_POST['metakeyselect'] && empty($_POST['metakeyinput']) )
+               if ( isset($_POST['metakeyselect']) && '#NONE#' == $_POST['metakeyselect'] && empty($_POST['metakeyinput']) )
                        die('1');
                if ( $pid < 0 ) {
                        $now = current_time('timestamp', 1);
@@ -637,12 +791,13 @@ case 'add-meta' :
                                        ) );
                                        $x->send();
                                }
-                               $mid = add_meta( $pid );
+                               if ( !$mid = add_meta( $pid ) )
+                                       die(__('Please provide a custom field value.'));
                        } else {
                                die('0');
                        }
                } else if ( !$mid = add_meta( $pid ) ) {
-                       die('0');
+                       die(__('Please provide a custom field value.'));
                }
 
                $meta = get_post_meta_by_id( $mid );
@@ -663,8 +818,11 @@ case 'add-meta' :
                        die('0'); // if meta doesn't exist
                if ( !current_user_can( 'edit_post', $meta->post_id ) )
                        die('-1');
-               if ( !$u = update_meta( $mid, $key, $value ) )
-                       die('1'); // We know meta exists; we also know it's unchanged (or DB error, in which case there are bigger problems).
+               if ( $meta->meta_value != stripslashes($value) ) {
+                       if ( !$u = update_meta( $mid, $key, $value ) )
+                               die('0'); // We know meta exists; we also know it's unchanged (or DB error, in which case there are bigger problems).
+               }
+
                $key = stripslashes($key);
                $value = stripslashes($value);
                $x = new WP_Ajax_Response( array(
@@ -715,7 +873,6 @@ case 'autosave' : // The name of this action is hardcoded in edit_post()
        global $current_user;
 
        $_POST['post_category'] = explode(",", $_POST['catslist']);
-       $_POST['tags_input'] = explode(",", $_POST['tags_input']);
        if($_POST['post_type'] == 'page' || empty($_POST['post_category']))
                unset($_POST['post_category']);
 
@@ -723,7 +880,9 @@ case 'autosave' : // The name of this action is hardcoded in edit_post()
        $do_lock = true;
 
        $data = '';
-       $message = sprintf( __('Draft Saved at %s.'), date_i18n( __('g:i:s a') ) );
+       /* translators: draft saved date format, see http://php.net/date */
+       $draft_saved_date_format = __('g:i:s a');
+       $message = sprintf( __('Draft Saved at %s.'), date_i18n( $draft_saved_date_format ) );
 
        $supplemental = array();
 
@@ -747,7 +906,7 @@ case 'autosave' : // The name of this action is hardcoded in edit_post()
                        $last_user_name = $last_user ? $last_user->display_name : __( 'Someone' );
                        $data = new WP_Error( 'locked', sprintf(
                                $_POST['post_type'] == 'page' ? __( 'Autosave disabled: %s is currently editing this page.' ) : __( 'Autosave disabled: %s is currently editing this post.' ),
-                               wp_specialchars( $last_user_name )
+                               esc_html( $last_user_name )
                        ) );
 
                        $supplemental['disable_autosave'] = 'disable';
@@ -818,32 +977,65 @@ case 'autosave-generate-nonces' :
 break;
 case 'closed-postboxes' :
        check_ajax_referer( 'closedpostboxes', 'closedpostboxesnonce' );
-       $closed = isset( $_POST['closed'] )? $_POST['closed'] : '';
+       $closed = isset( $_POST['closed'] ) ? $_POST['closed'] : '';
        $closed = explode( ',', $_POST['closed'] );
-       $hidden = isset( $_POST['hidden'] )? $_POST['hidden'] : '';
+       $hidden = isset( $_POST['hidden'] ) ? $_POST['hidden'] : '';
        $hidden = explode( ',', $_POST['hidden'] );
-       $page = isset( $_POST['page'] )? $_POST['page'] : '';
-       if ( !preg_match( '/^[a-z-_]+$/', $page ) ) {
-               die(-1);
-       }
-       $current_user = wp_get_current_user();
+       $page = isset( $_POST['page'] ) ? $_POST['page'] : '';
+
+       if ( !preg_match( '/^[a-z_-]+$/', $page ) )
+               die('-1');
+
+       if ( ! $user = wp_get_current_user() )
+               die('-1');
+
        if ( is_array($closed) )
-               update_usermeta($current_user->ID, 'closedpostboxes_'.$page, $closed);
-       if ( is_array($hidden) )
-               update_usermeta($current_user->ID, 'meta-box-hidden_'.$page, $hidden);
-break;
+               update_usermeta($user->ID, 'closedpostboxes_'.$page, $closed);
+
+       if ( is_array($hidden) ) {
+               $hidden = array_diff( $hidden, array('submitdiv', 'pagesubmitdiv', 'linksubmitdiv') ); // postboxes that are always shown
+               update_usermeta($user->ID, 'meta-box-hidden_'.$page, $hidden);
+       }
+
+       die('1');
+       break;
 case 'hidden-columns' :
-       check_ajax_referer( 'hiddencolumns', 'hiddencolumnsnonce' );
-       $hidden = isset( $_POST['hidden'] )? $_POST['hidden'] : '';
+       check_ajax_referer( 'screen-options-nonce', 'screenoptionnonce' );
+       $hidden = isset( $_POST['hidden'] ) ? $_POST['hidden'] : '';
        $hidden = explode( ',', $_POST['hidden'] );
-       $page = isset( $_POST['page'] )? $_POST['page'] : '';
-       if ( !preg_match( '/^[a-z-_]+$/', $page ) ) {
-               die(-1);
-       }
-       $current_user = wp_get_current_user();
+       $page = isset( $_POST['page'] ) ? $_POST['page'] : '';
+
+       if ( !preg_match( '/^[a-z_-]+$/', $page ) )
+               die('-1');
+
+       if ( ! $user = wp_get_current_user() )
+               die('-1');
+
        if ( is_array($hidden) )
-               update_usermeta($current_user->ID, "manage-$page-columns-hidden", $hidden);
-break;
+               update_usermeta($user->ID, "manage-$page-columns-hidden", $hidden);
+
+       die('1');
+       break;
+case 'meta-box-order':
+       check_ajax_referer( 'meta-box-order' );
+       $order = isset( $_POST['order'] ) ? (array) $_POST['order'] : false;
+       $page_columns = isset( $_POST['page_columns'] ) ? (int) $_POST['page_columns'] : 0;
+       $page = isset( $_POST['page'] ) ? $_POST['page'] : '';
+
+       if ( !preg_match( '/^[a-z_-]+$/', $page ) )
+               die('-1');
+
+       if ( ! $user = wp_get_current_user() )
+               die('-1');
+
+       if ( $order )
+               update_user_option($user->ID, "meta-box-order_$page", $order);
+
+       if ( $page_columns )
+               update_usermeta($user->ID, "screen_layout_$page", $page_columns);
+
+       die('1');
+       break;
 case 'get-permalink':
        check_ajax_referer( 'getpermalink', 'getpermalinknonce' );
        $post_id = isset($_POST['post_id'])? intval($_POST['post_id']) : 0;
@@ -873,12 +1065,15 @@ case 'inline-save':
        if ( $last = wp_check_post_lock( $post_ID ) ) {
                $last_user = get_userdata( $last );
                $last_user_name = $last_user ? $last_user->display_name : __( 'Someone' );
-               printf( $_POST['post_type'] == 'page' ? __( 'Saving is disabled: %s is currently editing this page.' ) : __( 'Saving is disabled: %s is currently editing this post.' ),        wp_specialchars( $last_user_name ) );
+               printf( $_POST['post_type'] == 'page' ? __( 'Saving is disabled: %s is currently editing this page.' ) : __( 'Saving is disabled: %s is currently editing this post.' ),        esc_html( $last_user_name ) );
                exit;
        }
 
        $data = &$_POST;
+
        $post = get_post( $post_ID, ARRAY_A );
+       $post = add_magic_quotes($post); //since it is from db
+
        $data['content'] = $post['post_content'];
        $data['excerpt'] = $post['post_excerpt'];
 
@@ -900,7 +1095,6 @@ case 'inline-save':
                $data['ping_status'] = 'closed';
 
        // update the post
-       $_POST = $data;
        edit_post();
 
        $post = array();
@@ -954,9 +1148,17 @@ case 'inline-save-tax':
 
                        break;
                case 'tag' :
-                       $updated = wp_update_term($id, 'post_tag', $_POST);
+                       if ( !empty($_POST['taxonomy']) )
+                               $taxonomy = $_POST['taxonomy'];
+                       else
+                               $taxonomy = 'post_tag';
+
+                       $tag = get_term( $id, $taxonomy );
+                       $_POST['description'] = $tag->description;
+
+                       $updated = wp_update_term($id, $taxonomy, $_POST);
                        if ( $updated && !is_wp_error($updated) ) {
-                               $tag = get_term( $updated['term_id'], 'post_tag' );
+                               $tag = get_term( $updated['term_id'], $taxonomy );
                                if ( !$tag || is_wp_error( $tag ) )
                                        die( __('Tag not updated.') );
 
@@ -970,11 +1172,6 @@ case 'inline-save-tax':
 
        exit;
        break;
-case 'meta-box-order':
-       check_ajax_referer( 'meta-box-order' );
-       update_user_option( $GLOBALS['current_user']->ID, "meta-box-order_$_POST[page]", $_POST['order'] );
-       die('1');
-       break;
 case 'find_posts':
        check_ajax_referer( 'find-posts' );
 
@@ -1001,7 +1198,7 @@ case 'find_posts':
        if ( ! $posts )
                exit( __('No posts found.') );
 
-       $html = '<table class="widefat"><thead><tr><th class="found-radio"><br /></th><th>'.__('Title').'</th><th>'.__('Time').'</th><th>'.__('Status').'</th></tr></thead><tbody>';
+       $html = '<table class="widefat" cellspacing="0"><thead><tr><th class="found-radio"><br /></th><th>'.__('Title').'</th><th>'.__('Time').'</th><th>'.__('Status').'</th></tr></thead><tbody>';
        foreach ( $posts as $post ) {
 
                switch ( $post->post_status ) {
@@ -1023,11 +1220,12 @@ case 'find_posts':
                if ( '0000-00-00 00:00:00' == $post->post_date ) {
                        $time = '';
                } else {
+                       /* translators: date format in table columns, see http://php.net/date */
                        $time = mysql2date(__('Y/m/d'), $post->post_date);
                }
 
-               $html .= '<tr class="found-posts"><td class="found-radio"><input type="radio" id="found-'.$post->ID.'" name="found_post_id" value="'.$post->ID.'"></td>';
-               $html .= '<td><label for="found-'.$post->ID.'">'.wp_specialchars($post->post_title, true).'</label></td><td>'.wp_specialchars($time, true).'</td><td>'.wp_specialchars($stat, true).'</td></tr>'."\n\n";
+               $html .= '<tr class="found-posts"><td class="found-radio"><input type="radio" id="found-'.$post->ID.'" name="found_post_id" value="' . esc_attr($post->ID) . '"></td>';
+               $html .= '<td><label for="found-'.$post->ID.'">'.esc_html( $post->post_title ).'</label></td><td>'.esc_html( $time ).'</td><td>'.esc_html( $stat ).'</td></tr>'."\n\n";
        }
        $html .= '</tbody></table>';
 
@@ -1038,6 +1236,117 @@ case 'find_posts':
        ));
        $x->send();
 
+       break;
+case 'lj-importer' :
+       check_ajax_referer( 'lj-api-import' );
+       if ( !current_user_can( 'publish_posts' ) )
+               die('-1');
+       if ( empty( $_POST['step'] ) )
+               die( '-1' );
+       define('WP_IMPORTING', true);
+       include( ABSPATH . 'wp-admin/import/livejournal.php' );
+       $result = $lj_api_import->{ 'step' . ( (int) $_POST['step'] ) }();
+       if ( is_wp_error( $result ) )
+               echo $result->get_error_message();
+       die;
+       break;
+case 'widgets-order' :
+       check_ajax_referer( 'save-sidebar-widgets', 'savewidgets' );
+
+       if ( !current_user_can('switch_themes') )
+               die('-1');
+
+       unset( $_POST['savewidgets'], $_POST['action'] );
+
+       // save widgets order for all sidebars
+       if ( is_array($_POST['sidebars']) ) {
+               $sidebars = array();
+               foreach ( $_POST['sidebars'] as $key => $val ) {
+                       $sb = array();
+                       if ( !empty($val) ) {
+                               $val = explode(',', $val);
+                               foreach ( $val as $k => $v ) {
+                                       if ( strpos($v, 'widget-') === false )
+                                               continue;
+
+                                       $sb[$k] = substr($v, strpos($v, '_') + 1);
+                               }
+                       }
+                       $sidebars[$key] = $sb;
+               }
+               wp_set_sidebars_widgets($sidebars);
+               die('1');
+       }
+
+       die('-1');
+       break;
+case 'save-widget' :
+       check_ajax_referer( 'save-sidebar-widgets', 'savewidgets' );
+
+       if ( !current_user_can('switch_themes') || !isset($_POST['id_base']) )
+               die('-1');
+
+       unset( $_POST['savewidgets'], $_POST['action'] );
+
+       do_action('load-widgets.php');
+       do_action('widgets.php');
+       do_action('sidebar_admin_setup');
+
+       $id_base = $_POST['id_base'];
+       $widget_id = $_POST['widget-id'];
+       $sidebar_id = $_POST['sidebar'];
+       $multi_number = !empty($_POST['multi_number']) ? (int) $_POST['multi_number'] : 0;
+       $settings = isset($_POST['widget-' . $id_base]) && is_array($_POST['widget-' . $id_base]) ? $_POST['widget-' . $id_base] : false;
+       $error = '<p>' . __('An error has occured. Please reload the page and try again.') . '</p>';
+
+       $sidebars = wp_get_sidebars_widgets();
+       $sidebar = isset($sidebars[$sidebar_id]) ? $sidebars[$sidebar_id] : array();
+
+       // delete
+       if ( isset($_POST['delete_widget']) && $_POST['delete_widget'] ) {
+
+               if ( !isset($wp_registered_widgets[$widget_id]) )
+                       die($error);
+
+               $sidebar = array_diff( $sidebar, array($widget_id) );
+               $_POST = array('sidebar' => $sidebar_id, 'widget-' . $id_base => array(), 'the-widget-id' => $widget_id, 'delete_widget' => '1');
+       } elseif ( $settings && preg_match( '/__i__|%i%/', key($settings) ) ) {
+               if ( !$multi_number )
+                       die($error);
+
+               $_POST['widget-' . $id_base] = array( $multi_number => array_shift($settings) );
+               $widget_id = $id_base . '-' . $multi_number;
+               $sidebar[] = $widget_id;
+       }
+       $_POST['widget-id'] = $sidebar;
+
+       foreach ( (array) $wp_registered_widget_updates as $name => $control ) {
+
+               if ( $name == $id_base ) {
+                       if ( !is_callable( $control['callback'] ) )
+                               continue;
+
+                       ob_start();
+                               call_user_func_array( $control['callback'], $control['params'] );
+                       ob_end_clean();
+                       break;
+               }
+       }
+
+       if ( isset($_POST['delete_widget']) && $_POST['delete_widget'] ) {
+               $sidebars[$sidebar_id] = $sidebar;
+               wp_set_sidebars_widgets($sidebars);
+               echo "deleted:$widget_id";
+               die();
+       }
+
+       if ( !empty($_POST['add_new']) )
+               die();
+
+       if ( $form = $wp_registered_widget_controls[$widget_id] )
+               call_user_func_array( $form['callback'], $form['params'] );
+
+       die();
        break;
 default :
        do_action( 'wp_ajax_' . $_POST['action'] );