Ticket #24210: 24210.2.patch
File 24210.2.patch, 6.8 KB (added by , 11 years ago) |
---|
-
wp-admin/includes/ajax-actions.php
1415 1415 $parent = $parent_tag->parent; 1416 1416 $level++; 1417 1417 } 1418 echo$wp_list_table->single_row( $tag, $level );1418 $wp_list_table->single_row( $tag, $level ); 1419 1419 wp_die(); 1420 1420 } 1421 1421 -
wp-admin/includes/class-wp-comments-list-table.php
315 315 $this->user_can = current_user_can( 'edit_comment', $comment->comment_ID ); 316 316 317 317 echo "<tr id='comment-$comment->comment_ID' class='$the_comment_class'>"; 318 echo$this->single_row_columns( $comment );318 $this->single_row_columns( $comment ); 319 319 echo "</tr>\n"; 320 320 } 321 321 -
wp-admin/includes/class-wp-list-table.php
826 826 $row_class = ( $row_class == '' ? ' class="alternate"' : '' ); 827 827 828 828 echo '<tr' . $row_class . '>'; 829 echo$this->single_row_columns( $item );829 $this->single_row_columns( $item ); 830 830 echo '</tr>'; 831 831 } 832 832 -
wp-admin/includes/class-wp-posts-list-table.php
382 382 if ( $count >= $end ) 383 383 break; 384 384 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 } 387 389 388 390 $count++; 389 391 … … 397 399 foreach ( $orphans as $op ) { 398 400 if ( $count >= $end ) 399 401 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 402 408 $count++; 403 409 } 404 410 } … … 444 450 } 445 451 $num_parents = count( $my_parents ); 446 452 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 ); 448 455 $num_parents--; 449 456 } 450 457 } 451 458 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 } 454 463 455 464 $count++; 456 465 -
wp-admin/includes/class-wp-terms-list-table.php
136 136 $args['offset'] = $offset = ( $page - 1 ) * $number; 137 137 138 138 // convert it to table rows 139 $out = '';140 139 $count = 0; 141 140 142 141 $terms = array(); … … 152 151 $children = _get_term_hierarchy( $taxonomy ); 153 152 154 153 // Some funky recursion to get the job done( Paging & parents mainly ) is contained within, Skip it for non-hierarchical taxonomies for performance sake 155 $ out .= $this->_rows( $taxonomy, $terms, $children, $offset, $number, $count );154 $this->_rows( $taxonomy, $terms, $children, $offset, $number, $count ); 156 155 } else { 157 156 $terms = get_terms( $taxonomy, $args ); 158 157 foreach ( $terms as $term ) 159 $ out .= $this->single_row( $term, 0, $taxonomy );158 $this->single_row( $term, 0, $taxonomy ); 160 159 $count = $number; // Only displaying a single page. 161 160 } 162 161 … … 165 164 echo '<tr class="no-items"><td class="colspanchange" colspan="' . $this->get_column_count() . '">'; 166 165 $this->no_items(); 167 166 echo '</td></tr>'; 168 } else {169 echo $out;170 167 } 171 168 } 172 169 … … 174 171 175 172 $end = $start + $per_page; 176 173 177 $output = '';178 174 foreach ( $terms as $key => $term ) { 179 175 180 176 if ( $count >= $end ) … … 199 195 200 196 $num_parents = count( $my_parents ); 201 197 while ( $my_parent = array_pop( $my_parents ) ) { 202 $output .= "\t" . $this->single_row( $my_parent, $level - $num_parents, $taxonomy ); 198 echo "\t"; 199 $this->single_row( $my_parent, $level - $num_parents, $taxonomy ); 203 200 $num_parents--; 204 201 } 205 202 } 206 203 207 if ( $count >= $start ) 208 $output .= "\t" . $this->single_row( $term, $level, $taxonomy ); 204 if ( $count >= $start ) { 205 echo "\t"; 206 $this->single_row( $term, $level, $taxonomy ); 207 } 209 208 210 209 ++$count; 211 210 212 211 unset( $terms[$key] ); 213 212 214 213 if ( isset( $children[$term->term_id] ) && empty( $_REQUEST['s'] ) ) 215 $ output .= $this->_rows( $taxonomy, $terms, $children, $start, $per_page, $count, $term->term_id, $level + 1 );214 $this->_rows( $taxonomy, $terms, $children, $start, $per_page, $count, $term->term_id, $level + 1 ); 216 215 } 217 218 return $output;219 216 } 220 217 221 218 function single_row( $tag, $level = 0 ) { … … 225 222 $this->level = $level; 226 223 227 224 echo '<tr id="tag-' . $tag->term_id . '"' . $row_class . '>'; 228 echo$this->single_row_columns( $tag );225 $this->single_row_columns( $tag ); 229 226 echo '</tr>'; 230 227 } 231 228 -
wp-admin/includes/class-wp-upgrader.php
1129 1129 return; 1130 1130 $this->done_header = true; 1131 1131 echo '<div class="wrap">'; 1132 echoscreen_icon();1132 screen_icon(); 1133 1133 echo '<h2>' . $this->options['title'] . '</h2>'; 1134 1134 } 1135 1135 function footer() { -
wp-admin/includes/class-wp-users-list-table.php
209 209 continue; 210 210 211 211 $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" . $this->single_row( $user_object, $style, $role, isset( $post_counts ) ? $post_counts[ $userid ] : 0 ); 213 213 } 214 214 } 215 215 -
wp-admin/includes/theme-install.php
153 153 function display_theme( $theme ) { 154 154 _deprecated_function( __FUNCTION__, '3.4' ); 155 155 global $wp_list_table; 156 return$wp_list_table->single_row( $theme );156 $wp_list_table->single_row( $theme ); 157 157 } 158 158 159 159 /**