From 8d8d1f8ba48f38cff63540da1b946de8ca1c5d7d Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Wed, 29 Nov 2006 20:57:52 +0000 Subject: [PATCH] Center ID and comments, fixes #3404 git-svn-id: https://develop.svn.wordpress.org/trunk@4541 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/edit.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/edit.php b/wp-admin/edit.php index 395bc6b0e5..529ca15d9c 100644 --- a/wp-admin/edit.php +++ b/wp-admin/edit.php @@ -127,11 +127,11 @@ if ( count($arc_result) ) { ?> 'display name' $posts_columns = array( - 'id' => __('ID'), + 'id' => '
' . __('ID') . '
', 'date' => __('When'), 'title' => __('Title'), 'categories' => __('Categories'), - 'comments' => __('Comments'), + 'comments' => '
' . __('Comments') . '
', 'author' => __('Author') ); $posts_columns = apply_filters('manage_posts_columns', $posts_columns);