diff --git a/wp-admin/includes/class-wp-ms-sites-list-table.php b/wp-admin/includes/class-wp-ms-sites-list-table.php
index 9fe3f482d4..b5ec9a1725 100644
--- a/wp-admin/includes/class-wp-ms-sites-list-table.php
+++ b/wp-admin/includes/class-wp-ms-sites-list-table.php
@@ -471,33 +471,33 @@ class WP_MS_Sites_List_Table extends WP_List_Table {
'visit' => '',
);
- $actions['edit'] = '' . __( 'Edit' ) . '';
- $actions['backend'] = "" . __( 'Dashboard' ) . '';
+ $actions['edit'] = '' . __( 'Edit' ) . '';
+ $actions['backend'] = "" . __( 'Dashboard' ) . '';
if ( get_current_site()->blog_id != $blog['blog_id'] ) {
if ( $blog['deleted'] == '1' ) {
- $actions['activate'] = '' . __( 'Activate' ) . '';
+ $actions['activate'] = '' . __( 'Activate' ) . '';
} else {
- $actions['deactivate'] = '' . __( 'Deactivate' ) . '';
+ $actions['deactivate'] = '' . __( 'Deactivate' ) . '';
}
if ( $blog['archived'] == '1' ) {
- $actions['unarchive'] = '' . __( 'Unarchive' ) . '';
+ $actions['unarchive'] = '' . __( 'Unarchive' ) . '';
} else {
- $actions['archive'] = '' . _x( 'Archive', 'verb; site' ) . '';
+ $actions['archive'] = '' . _x( 'Archive', 'verb; site' ) . '';
}
if ( $blog['spam'] == '1' ) {
- $actions['unspam'] = '' . _x( 'Not Spam', 'site' ) . '';
+ $actions['unspam'] = '' . _x( 'Not Spam', 'site' ) . '';
} else {
- $actions['spam'] = '' . _x( 'Spam', 'site' ) . '';
+ $actions['spam'] = '' . _x( 'Spam', 'site' ) . '';
}
if ( current_user_can( 'delete_site', $blog['blog_id'] ) ) {
- $actions['delete'] = '' . __( 'Delete' ) . '';
+ $actions['delete'] = '' . __( 'Delete' ) . '';
}
}
- $actions['visit'] = "" . __( 'Visit' ) . '';
+ $actions['visit'] = "" . __( 'Visit' ) . '';
/**
* Filter the action links displayed for each site in the Sites list table.
diff --git a/wp-includes/version.php b/wp-includes/version.php
index b5965cc741..ac0bd5fb8f 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
-$wp_version = '4.4-alpha-33847';
+$wp_version = '4.4-alpha-33848';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.