Changeset 4541

Show
Ignore:
Timestamp:
11/29/06 20:57:52 (2 years ago)
Author:
matt
Message:

Center ID and comments, fixes #3404

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-admin/edit.php

    r4495 r4541  
    128128// define the columns to display, the syntax is 'internal name' => 'display name' 
    129129$posts_columns = array( 
    130     'id'         => __('ID')
     130    'id'         => '<div style="text-align: center">' . __('ID') . '</div>'
    131131    'date'       => __('When'), 
    132132    'title'      => __('Title'), 
    133133    'categories' => __('Categories'), 
    134     'comments'   => __('Comments')
     134    'comments'   => '<div style="text-align: center">' . __('Comments') . '</div>'
    135135    'author'     => __('Author') 
    136136);