Changeset 10292 for trunk/wp-admin/includes/template.php
- Timestamp:
- 01/04/2009 04:21:35 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/template.php
r10285 r10292 182 182 $attributes = 'class="posts column-posts num"' . $style; 183 183 $output .= "<td $attributes>$posts_count</td>\n"; 184 break; 185 default: 186 $output .= "<td $attributes>"; 187 $output .= apply_filters('manage_categories_custom_column', $column_name, $category->term_id); 188 $output .= "</td>"; 184 189 } 185 190 } … … 346 351 $attributes = 'class="links column-links num"' . $style; 347 352 $output .= "<td $attributes>$count</td>"; 353 break; 354 default: 355 $output .= "<td $attributes>"; 356 $output .= apply_filters('manage_link_categories_custom_column', $column_name, $category->term_id); 357 $output .= "</td>"; 348 358 } 349 359 } … … 634 644 $out .= "<td $attributes>$count</td>"; 635 645 break; 646 default: 647 $out .= "<td $attributes>"; 648 $out .= apply_filters("manage_${taxonomy}_custom_column", $column_name, $tag->term_id); 649 $out .= "</td>"; 636 650 } 637 651 } … … 1880 1894 } 1881 1895 $r .= "</td>"; 1896 break; 1897 default: 1898 $r .= "<td $attributes>"; 1899 $r .= apply_filters('manage_users_custom_column', $column_name, $user_object->ID); 1900 $r .= "</td>"; 1882 1901 } 1883 1902 }
Note: See TracChangeset
for help on using the changeset viewer.