Make WordPress Core

Changeset 19504


Ignore:
Timestamp:
12/01/2011 12:36:19 AM (13 years ago)
Author:
nacin
Message:

They call me multisite. props ryan, zeo. see #19020.

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/admin.php

    r18782 r19504  
    5959require_once(ABSPATH . 'wp-admin/includes/deprecated.php');
    6060
    61 /** WordPress Multi-Site support API */
     61/** WordPress Multisite support API */
    6262if ( is_multisite() ) {
    6363    require_once(ABSPATH . 'wp-admin/includes/ms.php');
  • trunk/wp-admin/my-sites.php

    r19323 r19504  
    3838add_contextual_help($current_screen,
    3939    '<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>'
    4141);
    4242
  • trunk/wp-admin/themes.php

    r19473 r19504  
    4949if ( current_user_can( 'install_themes' ) ) {
    5050    if ( is_multisite() ) {
    51         $help_install = '<p>' . __('Installing themes on MultiSite 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>';
    5252    } else {
    5353        $help_install = '<p>' . sprintf( __('If you would like to see more themes to choose from, click on the &#8220;Install Themes&#8221; 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&#8217;re free!'), 'http://wordpress.org/extend/themes/' ) . '</p>';
  • trunk/wp-includes/ms-functions.php

    r19182 r19504  
    11<?php
    22/**
    3  * Multi-site WordPress API
     3 * Multisite WordPress API
    44 *
    55 * @package WordPress
Note: See TracChangeset for help on using the changeset viewer.