Fix empty table cells in IE

git-svn-id: http://svn.automattic.com/wordpress/trunk@10839 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
azaozz 2009-03-26 02:17:01 +00:00
parent 693fd1774e
commit 0cf0733ba8
2 changed files with 2 additions and 2 deletions

View File

@ -840,7 +840,7 @@ function get_column_headers($page) {
'name' => __('Name'),
'url' => __('URL'),
'categories' => __('Categories'),
'rel' => __('rel'),
'rel' => __('Relationship'),
'visible' => __('Visible')
);

View File

@ -228,7 +228,7 @@ if ( $links ) {
?></td><?php
break;
case 'rel':
?><td <?php echo $attributes ?>><?php echo $link->link_rel; ?></td><?php
?><td <?php echo $attributes ?>><?php echo empty($link->link_rel) ? '<br />' : $link->link_rel; ?></td><?php
break;
case 'visible':
?><td <?php echo $attributes ?>><?php echo $visible; ?></td><?php