Make WordPress Core

Ticket #44416: 44416.diff

File 44416.diff, 4.1 KB (added by desrosj, 6 years ago)
  • src/wp-includes/class-wp-comment-query.php

     
    635635                $number = absint( $this->query_vars['number'] );
    636636                $offset = absint( $this->query_vars['offset'] );
    637637                $paged  = absint( $this->query_vars['paged'] );
     638                $limits = '';
    638639
    639640                if ( ! empty( $number ) ) {
    640641                        if ( $offset ) {
     
    825826                        $join .= "JOIN $wpdb->posts ON $wpdb->posts.ID = $wpdb->comments.comment_post_ID";
    826827                }
    827828
     829                $groupby = '';
     830
    828831                if ( ! empty( $this->meta_query_clauses ) ) {
    829832                        $join .= $this->meta_query_clauses['join'];
    830833
  • src/wp-includes/class-wp-xmlrpc-server.php

     
    37103710                }
    37113711
    37123712                // Do some timestamp voodoo
     3713                $comment_date = '';
     3714                $comment_date_gmt = '';
     3715
    37133716                if ( ! empty( $content_struct['date_created_gmt'] ) ) {
    37143717                        // We know this is supposed to be GMT, so we're going to slap that Z on there by force
    37153718                        $dateCreated      = rtrim( $content_struct['date_created_gmt']->getIso(), 'Z' ) . 'Z';
     
    37173720                        $comment_date_gmt = iso8601_to_datetime( $dateCreated, 'GMT' );
    37183721                }
    37193722
     3723                $comment_content = '';
     3724
    37203725                if ( isset( $content_struct['content'] ) ) {
    37213726                        $comment_content = $content_struct['content'];
    37223727                }
     
    52585263                }
    52595264
    52605265                // Only use a password if one was given.
     5266                $post_password = '';
    52615267                if ( isset( $content_struct['wp_password'] ) ) {
    52625268                        $post_password = $content_struct['wp_password'];
    52635269                }
    52645270
    52655271                // Only set a post parent if one was provided.
     5272                $post_parent = '';
     5273
    52665274                if ( isset( $content_struct['wp_page_parent_id'] ) ) {
    52675275                        $post_parent = $content_struct['wp_page_parent_id'];
    52685276                }
     
    56575665                        }
    56585666                }
    56595667
     5668                $comment_status = '';
     5669
    56605670                if ( isset( $content_struct['mt_allow_comments'] ) ) {
    56615671                        if ( ! is_numeric( $content_struct['mt_allow_comments'] ) ) {
    56625672                                switch ( $content_struct['mt_allow_comments'] ) {
  • src/wp-includes/comment.php

     
    30913091
    30923092        $comment_post_ID = $comment_parent = 0;
    30933093        $comment_author  = $comment_author_email = $comment_author_url = $comment_content = null;
     3094        $user_ID = 0;
    30943095
    30953096        if ( isset( $comment_data['comment_post_ID'] ) ) {
    30963097                $comment_post_ID = (int) $comment_data['comment_post_ID'];
  • src/wp-includes/post.php

     
    35463546                $post_parent = 0;
    35473547        }
    35483548
     3549        $new_postarr = array_merge(
     3550                array(
     3551                        'ID' => $post_ID,
     3552                ),
     3553                compact( array_diff( array_keys( $defaults ), array( 'context', 'filter' ) ) )
     3554        );
     3555
    35493556        /**
    35503557         * Filters the post parent -- used to check for and prevent hierarchy loops.
    35513558         *
     
    35563563         * @param array $new_postarr Array of parsed post data.
    35573564         * @param array $postarr     Array of sanitized, but otherwise unmodified post data.
    35583565         */
    3559         $post_parent = apply_filters( 'wp_insert_post_parent', $post_parent, $post_ID, compact( array_keys( $postarr ) ), $postarr );
     3566        $post_parent = apply_filters( 'wp_insert_post_parent', $post_parent, $post_ID, $new_postarr, $postarr );
    35603567
    35613568        /*
    35623569         * If the post is being untrashed and it has a desired slug stored in post meta,
  • tests/phpunit/tests/dependencies/scripts.php

     
    825825         * @covers ::wp_enqueue_code_editor()
    826826         */
    827827        public function test_wp_enqueue_code_editor_when_generated_array_by_compact_will_be_passed() {
     828                $file = '';
     829
    828830                $wp_enqueue_code_editor = wp_enqueue_code_editor( compact( 'file' ) );
    829831                $this->assertNonEmptyMultidimensionalArray( $wp_enqueue_code_editor );