Page Options: fix hiding of custom columns added by plugins, props ShaneF, fixes #7853

git-svn-id: https://develop.svn.wordpress.org/trunk@9108 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2008-10-09 02:39:52 +00:00
parent 852dec7767
commit 6b3823a406
1 changed files with 2 additions and 2 deletions

View File

@ -1433,7 +1433,7 @@ function _post_row($a_post, $pending_comments, $mode) {
default:
?>
<td><?php do_action('manage_posts_custom_column', $column_name, $post->ID); ?></td>
<td <?php echo $attributes ?>><?php do_action('manage_posts_custom_column', $column_name, $post->ID); ?></td>
<?php
break;
}
@ -1596,7 +1596,7 @@ foreach ($posts_columns as $column_name=>$column_display_name) {
default:
?>
<td><?php do_action('manage_pages_custom_column', $column_name, $id); ?></td>
<td <?php echo $attributes ?>><?php do_action('manage_pages_custom_column', $column_name, $id); ?></td>
<?php
break;
}