Changeset 12311
- Timestamp:
- 12/01/2009 10:05:03 PM (16 years ago)
- Location:
- trunk/wp-admin/includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/dashboard.php
r12287 r12311 532 532 $actions_string = ''; 533 533 if ( current_user_can('edit_post', $comment->comment_post_ID) ) { 534 // preorder it: Approve | Reply | Edit | Trash | Spam534 // preorder it: Approve | Reply | Edit | Spam | Trash 535 535 $actions = array( 536 536 'approve' => '', 'unapprove' => '', 537 537 'reply' => '', 538 538 'edit' => '', 539 ' trash' => '', 'delete' => '',540 ' spam' => ''539 'spam' => '', 540 'trash' => '', 'delete' => '' 541 541 ); 542 542 -
trunk/wp-admin/includes/template.php
r12289 r12311 2161 2161 2162 2162 if ( $user_can ) { 2163 // preorder it: Approve | Reply | Quick Edit | Edit | Trash | Spam2163 // preorder it: Approve | Reply | Quick Edit | Edit | Spam | Trash 2164 2164 $actions = array( 2165 2165 'approve' => '', 'unapprove' => '', … … 2167 2167 'quickedit' => '', 2168 2168 'edit' => '', 2169 ' trash' => '', 'untrash' => '', 'delete' => '',2170 ' spam' => '', 'unspam' => ''2169 'spam' => '', 'unspam' => '', 2170 'trash' => '', 'untrash' => '', 'delete' => '' 2171 2171 ); 2172 2172
Note: See TracChangeset
for help on using the changeset viewer.