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:
parent
693fd1774e
commit
0cf0733ba8
|
@ -840,7 +840,7 @@ function get_column_headers($page) {
|
||||||
'name' => __('Name'),
|
'name' => __('Name'),
|
||||||
'url' => __('URL'),
|
'url' => __('URL'),
|
||||||
'categories' => __('Categories'),
|
'categories' => __('Categories'),
|
||||||
'rel' => __('rel'),
|
'rel' => __('Relationship'),
|
||||||
'visible' => __('Visible')
|
'visible' => __('Visible')
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
@ -228,7 +228,7 @@ if ( $links ) {
|
||||||
?></td><?php
|
?></td><?php
|
||||||
break;
|
break;
|
||||||
case 'rel':
|
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;
|
break;
|
||||||
case 'visible':
|
case 'visible':
|
||||||
?><td <?php echo $attributes ?>><?php echo $visible; ?></td><?php
|
?><td <?php echo $attributes ?>><?php echo $visible; ?></td><?php
|
||||||
|
|
Loading…
Reference in New Issue