Make WordPress Core


Ignore:
Timestamp:
12/01/2009 10:05:03 PM (15 years ago)
Author:
azaozz
Message:

Swap Spam and Trash in comment action links, fixes #11258

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/dashboard.php

    r12287 r12311  
    532532    $actions_string = '';
    533533    if ( current_user_can('edit_post', $comment->comment_post_ID) ) {
    534         // preorder it: Approve | Reply | Edit | Trash | Spam
     534        // preorder it: Approve | Reply | Edit | Spam | Trash
    535535        $actions = array(
    536536            'approve' => '', 'unapprove' => '',
    537537            'reply' => '',
    538538            'edit' => '',
    539             'trash' => '', 'delete' => '',
    540             'spam' => ''
     539            'spam' => '',
     540            'trash' => '', 'delete' => ''
    541541        );
    542542
Note: See TracChangeset for help on using the changeset viewer.