Make WordPress Core


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.1/wp-admin/admin-ajax.php

    r5118 r5092  
    152152    $x->send();
    153153    break;
    154 case 'add-comment' :
    155     if ( !current_user_can( 'edit_post', $id ) )
    156         die('-1');
    157     $search = isset($_POST['s']) ? $_POST['s'] : false;
    158     $start = isset($_POST['page']) ? intval($_POST['page']) * 25 : 25;
    159 
    160     list($comments, $total) = _wp_get_comment_list( $search, $start, 1 );
    161 
    162     if ( !$comments )
    163         die('1');
    164     $x = new WP_Ajax_Response();
    165     foreach ( (array) $comments as $comment ) {
    166         get_comment( $comment );
    167         ob_start();
    168             _wp_comment_list_item( $comment->comment_ID );
    169             $comment_list_item = ob_get_contents();
    170         ob_end_clean();
    171         $x->add( array(
    172             'what' => 'comment',
    173             'id' => $comment->comment_ID,
    174             'data' => $comment_list_item
    175         ) );
    176     }
    177     $x->send();
    178     break;
    179154case 'add-meta' :
    180155    if ( !current_user_can( 'edit_post', $id ) )
     
    252227    $_POST['post_category'] = explode(",", $_POST['catslist']);
    253228    if($_POST['post_type'] == 'page' || empty($_POST['post_category']))
    254         unset($_POST['post_category']);
    255 
     229        unset($_POST['post_category']); 
     230   
    256231    if($_POST['post_ID'] < 0) {
    257232        $_POST['temp_ID'] = $_POST['post_ID'];
Note: See TracChangeset for help on using the changeset viewer.