Make WordPress Core

Ticket #24210: 24210.patch

File 24210.patch, 5.6 KB (added by SergeyBiryukov, 11 years ago)
  • wp-admin/includes/ajax-actions.php

     
    10231023
    10241024        $role = current( $user_object->roles );
    10251025
     1026        ob_start();
     1027        $wp_list_table->single_row( $user_object, '', $role );
     1028        $user_row = ob_get_clean();
     1029
    10261030        $x = new WP_Ajax_Response( array(
    10271031                'what' => 'user',
    10281032                'id' => $user_id,
    1029                 'data' => $wp_list_table->single_row( $user_object, '', $role ),
     1033                'data' => $user_row,
    10301034                'supplemental' => array(
    10311035                        'show-link' => sprintf(__( 'User <a href="#%s">%s</a> added' ), "user-$user_id", $user_object->user_login),
    10321036                        'role' => $role,
     
    14151419                $parent = $parent_tag->parent;
    14161420                $level++;
    14171421        }
    1418         echo $wp_list_table->single_row( $tag, $level );
     1422        $wp_list_table->single_row( $tag, $level );
    14191423        wp_die();
    14201424}
    14211425
  • wp-admin/includes/class-wp-comments-list-table.php

     
    315315                $this->user_can = current_user_can( 'edit_comment', $comment->comment_ID );
    316316
    317317                echo "<tr id='comment-$comment->comment_ID' class='$the_comment_class'>";
    318                 echo $this->single_row_columns( $comment );
     318                $this->single_row_columns( $comment );
    319319                echo "</tr>\n";
    320320        }
    321321
  • wp-admin/includes/class-wp-list-table.php

     
    826826                $row_class = ( $row_class == '' ? ' class="alternate"' : '' );
    827827
    828828                echo '<tr' . $row_class . '>';
    829                 echo $this->single_row_columns( $item );
     829                $this->single_row_columns( $item );
    830830                echo '</tr>';
    831831        }
    832832
  • wp-admin/includes/class-wp-posts-list-table.php

     
    382382                        if ( $count >= $end )
    383383                                break;
    384384
    385                         if ( $count >= $start )
    386                                 echo "\t" . $this->single_row( $page, $level );
     385                        if ( $count >= $start ) {
     386                                echo "\t";
     387                                $this->single_row( $page, $level );
     388                        }
    387389
    388390                        $count++;
    389391
     
    397399                                foreach ( $orphans as $op ) {
    398400                                        if ( $count >= $end )
    399401                                                break;
    400                                         if ( $count >= $start )
    401                                                 echo "\t" . $this->single_row( $op, 0 );
     402
     403                                        if ( $count >= $start ) {
     404                                                echo "\t";
     405                                                $this->single_row( $op, 0 );
     406                                        }
     407
    402408                                        $count++;
    403409                                }
    404410                        }
     
    444450                                }
    445451                                $num_parents = count( $my_parents );
    446452                                while ( $my_parent = array_pop( $my_parents ) ) {
    447                                         echo "\t" . $this->single_row( $my_parent, $level - $num_parents );
     453                                        echo "\t";
     454                                        $this->single_row( $my_parent, $level - $num_parents );
    448455                                        $num_parents--;
    449456                                }
    450457                        }
    451458
    452                         if ( $count >= $start )
    453                                 echo "\t" . $this->single_row( $page, $level );
     459                        if ( $count >= $start ) {
     460                                echo "\t";
     461                                $this->single_row( $page, $level );
     462                        }
    454463
    455464                        $count++;
    456465
  • wp-admin/includes/class-wp-terms-list-table.php

     
    156156                } else {
    157157                        $terms = get_terms( $taxonomy, $args );
    158158                        foreach ( $terms as $term )
    159                                 $out .= $this->single_row( $term, 0, $taxonomy );
     159                                $this->single_row( $term, 0, $taxonomy );
    160160                        $count = $number; // Only displaying a single page.
    161161                }
    162162
     
    199199
    200200                                $num_parents = count( $my_parents );
    201201                                while ( $my_parent = array_pop( $my_parents ) ) {
    202                                         $output .=  "\t" . $this->single_row( $my_parent, $level - $num_parents, $taxonomy );
     202                                        $output .=  "\t";
     203                                        $this->single_row( $my_parent, $level - $num_parents, $taxonomy );
    203204                                        $num_parents--;
    204205                                }
    205206                        }
    206207
    207                         if ( $count >= $start )
    208                                 $output .= "\t" . $this->single_row( $term, $level, $taxonomy );
     208                        if ( $count >= $start ) {
     209                                $output .= "\t";
     210                                $this->single_row( $term, $level, $taxonomy );
     211                        }
    209212
    210213                        ++$count;
    211214
     
    225228                $this->level = $level;
    226229
    227230                echo '<tr id="tag-' . $tag->term_id . '"' . $row_class . '>';
    228                 echo $this->single_row_columns( $tag );
     231                $this->single_row_columns( $tag );
    229232                echo '</tr>';
    230233        }
    231234
  • wp-admin/includes/class-wp-users-list-table.php

     
    209209                                continue;
    210210
    211211                        $style = ( ' class="alternate"' == $style ) ? '' : ' class="alternate"';
    212                         echo "\n\t", $this->single_row( $user_object, $style, $role, isset( $post_counts ) ? $post_counts[ $userid ] : 0 );
     212                        echo "\n\t";
     213                        $this->single_row( $user_object, $style, $role, isset( $post_counts ) ? $post_counts[ $userid ] : 0 );
    213214                }
    214215        }
    215216
  • wp-admin/includes/theme-install.php

     
    153153function display_theme( $theme ) {
    154154        _deprecated_function( __FUNCTION__, '3.4' );
    155155        global $wp_list_table;
    156         return $wp_list_table->single_row( $theme );
     156        $wp_list_table->single_row( $theme );
    157157}
    158158
    159159/**