### Eclipse Workspace Patch 1.0
#P wordress 2.7
|
|
|
174 | 174 | if (strlen($short_url) > 35) |
175 | 175 | $short_url = substr($short_url, 0, 32).'...'; |
176 | 176 | $visible = ($link->link_visible == 'Y') ? __('Yes') : __('No'); |
| 177 | $rating = $link->link_rating; |
177 | 178 | $style = ($alt % 2) ? '' : ' class="alternate"'; |
178 | 179 | ++ $alt; |
179 | 180 | $edit_link = get_edit_bookmark_link(); |
… |
… |
|
233 | 234 | case 'visible': |
234 | 235 | ?><td <?php echo $attributes ?>><?php echo $visible; ?></td><?php |
235 | 236 | break; |
| 237 | case 'rating': |
| 238 | ?><td <?php echo $attributes ?>><?php echo $rating; ?></td><?php |
| 239 | break; |
236 | 240 | default: |
237 | 241 | ?> |
238 | 242 | <td><?php do_action('manage_link_custom_column', $column_name, $link->link_id); ?></td> |