Ticket #14585: 14585.2.diff
File 14585.2.diff, 1.9 KB (added by , 13 years ago) |
---|
-
sites.php
32 32 '<p>' . __('This is the main table of all sites on this network. Switch between list and excerpt views by using the icons above the right side of the table.') . '</p>' . 33 33 '<p>' . __('Hovering over each site reveals seven options (three for the primary site):') . '</p>' . 34 34 '<ul><li>' . __('an Edit link to a separate Edit Site screen.') . '</li>' . 35 '<li>' . __(' Backend means the Dashboard for that site.') . '</li>' .35 '<li>' . __('Dashboard means the Dashboard for that site.') . '</li>' . 36 36 '<li>' . __('Deactivate, Archive, and Spam which lead to confirmation screens. These actions can be reversed later.') . '</li>' . 37 37 '<li>' . __('Delete which is a permanent action after the confirmations screen.') . '</li>' . 38 38 '<li>' . __('Visit to go to the frontend site live.') . '</li></ul>' . … … 578 578 ); 579 579 580 580 $actions['edit'] = '<span class="edit"><a href="' . esc_url( network_admin_url( 'sites.php?action=editblog&id=' . $blog['blog_id'] ) ) . '">' . __( 'Edit' ) . '</a></span>'; 581 $actions['backend'] = "<span class='backend'><a href='" . esc_url( get_admin_url($blog['blog_id']) ) . "' class='edit'>" . __( ' Backend' ) . '</a></span>';581 $actions['backend'] = "<span class='backend'><a href='" . esc_url( get_admin_url($blog['blog_id']) ) . "' class='edit'>" . __( 'Dashboard' ) . '</a></span>'; 582 582 if ( $current_site->blog_id != $blog['blog_id'] ) { 583 583 if ( get_blog_status( $blog['blog_id'], 'deleted' ) == '1' ) 584 584 $actions['activate'] = '<span class="activate"><a href="' . esc_url( network_admin_url( 'edit.php?action=confirm&action2=activateblog&id=' . $blog['blog_id'] . '&msg=' . urlencode( sprintf( __( 'You are about to activate the site %s' ), $blogname ) ) ) ) . '">' . __( 'Activate' ) . '</a></span>';