Ticket #19020: 19020-call-me-multisite.diff
| File 19020-call-me-multisite.diff, 2.7 KB (added by , 14 years ago) |
|---|
-
wp-includes/ms-functions.php
1 1 <?php 2 2 /** 3 * Multi -site WordPress API3 * Multisite WordPress API 4 4 * 5 5 * @package WordPress 6 6 * @subpackage Multisite -
wp-admin/includes/admin.php
58 58 /** WordPress Deprecated Administration API */ 59 59 require_once(ABSPATH . 'wp-admin/includes/deprecated.php'); 60 60 61 /** WordPress Multi -Site support API */61 /** WordPress Multisite support API */ 62 62 if ( is_multisite() ) { 63 63 require_once(ABSPATH . 'wp-admin/includes/ms.php'); 64 64 require_once(ABSPATH . 'wp-admin/includes/ms-deprecated.php'); -
wp-admin/my-sites.php
37 37 38 38 add_contextual_help($current_screen, 39 39 '<p>' . __('This screen shows an individual user all of their sites in this network, and also allows that user to set a primary site. He or she can use the links under each site to visit either the frontend or the dashboard for that site.') . '</p>' . 40 '<p>' . __('Up until WordPress version 3.0, what is now called a Multi -site Network had to be installed separately as WordPress MU (multi-user).') . '</p>'40 '<p>' . __('Up until WordPress version 3.0, what is now called a Multisite Network had to be installed separately as WordPress MU (multi-user).') . '</p>' 41 41 ); 42 42 43 43 get_current_screen()->set_help_sidebar( -
wp-admin/themes.php
48 48 49 49 if ( current_user_can( 'install_themes' ) ) { 50 50 if ( is_multisite() ) { 51 $help_install = '<p>' . __('Installing themes on Multi Site can only be done from the Network Admin section.') . '</p>';51 $help_install = '<p>' . __('Installing themes on Multisite can only be done from the Network Admin section.') . '</p>'; 52 52 } else { 53 53 $help_install = '<p>' . sprintf( __('If you would like to see more themes to choose from, click on the “Install Themes” tab and you will be able to browse or search for additional themes from the <a href="%s" target="_blank">WordPress.org Theme Directory</a>. Themes in the WordPress.org Theme Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they’re free!'), 'http://wordpress.org/extend/themes/' ) . '</p>'; 54 54 }