From 371daed3ada91ac40957b4114ea48a0488ae02de Mon Sep 17 00:00:00 2001 From: Mark Jaquith Date: Wed, 12 Mar 2008 08:54:41 +0000 Subject: [PATCH] Move "approve/unapprove" links to the right, so the comment action links are consistently in the same position. fixes #6143 git-svn-id: https://develop.svn.wordpress.org/trunk@7265 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/template.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php index da034e3003..325f1e9720 100644 --- a/wp-admin/includes/template.php +++ b/wp-admin/includes/template.php @@ -648,10 +648,10 @@ function _wp_comment_row( $comment_id, $mode, $comment_status, $checkbox = true $actions = array(); if ( current_user_can('edit_post', $comment->comment_post_ID) ) { - $actions['approve'] = "" . __( 'Approve' ) . ' | '; - $actions['unapprove'] = "" . __( 'Unapprove' ) . ' | '; $actions['spam'] = "" . __( 'Spam' ) . ' | '; - $actions['delete'] = "" . __('Delete') . ''; + $actions['delete'] = "" . __('Delete') . ' | '; + $actions['approve'] = "" . __( 'Approve' ) . ''; + $actions['unapprove'] = "" . __( 'Unapprove' ) . ''; // we're looking at list of only approved or only unapproved comments if ( 'moderated' == $comment_status ) {