Fix empty table cells in IE

git-svn-id: https://develop.svn.wordpress.org/trunk@10839 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2009-03-26 02:17:01 +00:00
parent 85aa38df9b
commit 448d114dac
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