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/class-wp-customize-manager.php

    r41243 r41289  
    536536
    537537        /*
    538          * Import theme starter content for fresh installs when landing in the customizer.
     538         * Import theme starter content for fresh installations when landing in the customizer.
    539539         * Import starter content at after_setup_theme:100 so that any
    540540         * add_theme_support( 'starter-content' ) calls will have been made.
     
    17611761        $exported_setting_validities = array_map( array( $this, 'prepare_setting_validity_for_js' ), $setting_validities );
    17621762
    1763         // Note that the REQUEST_URI is not passed into home_url() since this breaks subdirectory installs.
     1763        // Note that the REQUEST_URI is not passed into home_url() since this breaks subdirectory installations.
    17641764        $self_url = empty( $_SERVER['REQUEST_URI'] ) ? home_url( '/' ) : esc_url_raw( wp_unslash( $_SERVER['REQUEST_URI'] ) );
    17651765        $state_query_params = array(
Note: See TracChangeset for help on using the changeset viewer.