Changeset 19504
- Timestamp:
- 12/01/2011 12:36:19 AM (13 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/admin.php
r18782 r19504 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'); -
trunk/wp-admin/my-sites.php
r19323 r19504 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 -
trunk/wp-admin/themes.php
r19473 r19504 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>'; -
trunk/wp-includes/ms-functions.php
r19182 r19504 1 1 <?php 2 2 /** 3 * Multi -site WordPress API3 * Multisite WordPress API 4 4 * 5 5 * @package WordPress
Note: See TracChangeset
for help on using the changeset viewer.