diff --git a/wp-admin/includes/ms.php b/wp-admin/includes/ms.php
index 84bacf86fa..cf11e01ea6 100644
--- a/wp-admin/includes/ms.php
+++ b/wp-admin/includes/ms.php
@@ -731,7 +731,7 @@ function site_admin_notice() {
return false;
printf("
" . __("Hi %s! You're logged in as a site administrator.") . "
", $current_user->user_login);
if ( get_site_option( 'wpmu_upgrade_site' ) != $wp_db_version ) {
- echo "" . __( 'Thank you for Upgrading! Please visit the
Upgrade Site page to update all your blogs.' ) . "
";
+ echo "" . __( 'Thank you for Upgrading! Please visit the
Upgrade Site page to update all your blogs.' ) . "
";
}
}
add_action( 'admin_notices', 'site_admin_notice' );
@@ -837,7 +837,7 @@ add_action( 'after_plugin_row', 'add_sitewide_activate_row', 9, 3 );
* be activated as a site wide MU plugin.
*/
function is_wpmu_sitewide_plugin( $file ) {
- /* Open the plugin file for reading to check if this is a wpmu-plugin. */
+ /* Open the plugin file for reading to check if this is a ms-plugin. */
$fp = @fopen( WP_PLUGIN_DIR . '/' . $file, 'r' );
/* Pull only the first 8kiB of the file in. */
@@ -1092,7 +1092,7 @@ function disable_some_pages() {
if ( strpos( $_SERVER['PHP_SELF'], 'user-new.php' ) && !get_site_option( 'add_new_users' ) ) {
if ( is_site_admin() ) {
- $messages[] = '' . __( 'Warning! Only site administrators may see this page. Everyone else will see a page disabled message. Enable it again on the options page.' ) . '
';
+ $messages[] = '' . __( 'Warning! Only site administrators may see this page. Everyone else will see a page disabled message. Enable it again on the options page.' ) . '
';
} else {
wp_die( __('Page disabled by the administrator') );
}
@@ -1253,7 +1253,7 @@ function show_post_thumbnail_warning() {
}
$mu_media_buttons = get_site_option( 'mu_media_buttons', array() );
if ( !$mu_media_buttons[ 'image' ] && current_theme_supports( 'post-thumbnails' ) ) {
- echo "" . sprintf( __( "Warning! The current theme supports post thumbnails. You must enable image uploads on
the options page for it to work." ), admin_url( 'wpmu-options.php' ) ) . "
";
+ echo "" . sprintf( __( "Warning! The current theme supports post thumbnails. You must enable image uploads on
the options page for it to work." ), admin_url( 'ms-options.php' ) ) . "
";
}
}
add_action( 'admin_notices', 'show_post_thumbnail_warning' );
diff --git a/wp-admin/ms-admin.php b/wp-admin/ms-admin.php
index 4fc86a027b..f2271b503b 100644
--- a/wp-admin/ms-admin.php
+++ b/wp-admin/ms-admin.php
@@ -5,7 +5,7 @@ if ( !is_multisite() )
wp_die( __('Multisite support is not enabled.') );
$title = __('WordPress MU › Admin');
-$parent_file = 'wpmu-admin.php';
+$parent_file = 'ms-admin.php';
function index_css() {
wp_admin_css( 'css/dashboard' );
@@ -33,15 +33,15 @@ $title = __( 'WordPress MU : Admin' );
-
-