Make WordPress Core


Ignore:
Timestamp:
08/22/2017 11:51:11 AM (7 years ago)
Author:
johnbillion
Message:

General: Improve terminology used when referring to installations of WordPress and its extensions.

"Install" is not a noun, and while it might be acceptable to use the verb as a noun, it is not correct. Using the correct
noun, "installation", increases clarity, especially for non-native English speakers.

This change fixes the usage in user-facing text and in developer documentation.

Fixes #41620

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/ms-load.php

    r38943 r41289  
    309309    } elseif ( ! $subdomain ) {
    310310        /*
    311          * A "subdomain" install can be re-interpreted to mean "can support any domain".
    312          * If we're not dealing with one of these installs, then the important part is determining
     311         * A "subdomain" installation can be re-interpreted to mean "can support any domain".
     312         * If we're not dealing with one of these installations, then the important part is determining
    313313         * the network first, because we need the network's path to identify any sites.
    314314         */
     
    402402
    403403        if ( $subdomain && ! defined( 'NOBLOGREDIRECT' ) ) {
    404             // For a "subdomain" install, redirect to the signup form specifically.
     404            // For a "subdomain" installation, redirect to the signup form specifically.
    405405            $destination .= 'wp-signup.php?new=' . str_replace( '.' . $current_site->domain, '', $domain );
    406406        } elseif ( $subdomain ) {
    407             // For a "subdomain" install, the NOBLOGREDIRECT constant
     407            // For a "subdomain" installation, the NOBLOGREDIRECT constant
    408408            // can be used to avoid a redirect to the signup form.
    409409            // Using the ms_site_not_found action is preferred to the constant.
Note: See TracChangeset for help on using the changeset viewer.