Changeset 10493 for trunk/wp-admin/includes/template.php
- Timestamp:
- 02/04/2009 12:31:47 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/template.php
r10478 r10493 185 185 default: 186 186 $output .= "<td $attributes>"; 187 $output .= apply_filters('manage_categories_custom_column', $column_name, $category->term_id);187 $output .= apply_filters('manage_categories_custom_column', '', $column_name, $category->term_id); 188 188 $output .= "</td>"; 189 189 } … … 354 354 default: 355 355 $output .= "<td $attributes>"; 356 $output .= apply_filters('manage_link_categories_custom_column', $column_name, $category->term_id);356 $output .= apply_filters('manage_link_categories_custom_column', '', $column_name, $category->term_id); 357 357 $output .= "</td>"; 358 358 } … … 646 646 default: 647 647 $out .= "<td $attributes>"; 648 $out .= apply_filters("manage_${taxonomy}_custom_column", $column_name, $tag->term_id);648 $out .= apply_filters("manage_${taxonomy}_custom_column", '', $column_name, $tag->term_id); 649 649 $out .= "</td>"; 650 650 } … … 1893 1893 default: 1894 1894 $r .= "<td $attributes>"; 1895 $r .= apply_filters('manage_users_custom_column', $column_name, $user_object->ID);1895 $r .= apply_filters('manage_users_custom_column', '', $column_name, $user_object->ID); 1896 1896 $r .= "</td>"; 1897 1897 }
Note: See TracChangeset
for help on using the changeset viewer.