Give the view links in post/page listings the view class rather than the edit class, fixes #4058 props rgovostes

git-svn-id: http://svn.automattic.com/wordpress/trunk@5927 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
westi
2007-08-23 18:04:15 +00:00
parent ac46bc16c7
commit 8047b60291
3 changed files with 5 additions and 5 deletions

View File

@@ -78,7 +78,7 @@ foreach($posts_columns as $column_name=>$column_display_name) {
case 'control_view':
?>
<td><a href="<?php the_permalink(); ?>" rel="permalink" class="edit"><?php _e('View'); ?></a></td>
<td><a href="<?php the_permalink(); ?>" rel="permalink" class="view"><?php _e('View'); ?></a></td>
<?php
break;