Skip to content

Commit 77ea0d1

Browse files
committed
Use "installation" instead of "install"
1 parent d9fde6e commit 77ea0d1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

entity-command.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
WP_CLI::add_command( 'network meta', 'Network_Meta_Command', array(
1818
'before_invoke' => function () {
1919
if ( !is_multisite() ) {
20-
WP_CLI::error( 'This is not a multisite install.' );
20+
WP_CLI::error( 'This is not a multisite installation.' );
2121
}
2222
}
2323
) );

features/network-meta.feature

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ Feature: Manage network-wide custom fields.
1313
Then STDOUT should be empty
1414
And STDERR should contain:
1515
"""
16-
This is not a multisite install.
16+
This is not a multisite installation.
1717
"""
1818
And the return code should be 1

src/User_Command.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ public function list_( $args, $assoc_args ) {
135135

136136
if ( \WP_CLI\Utils\get_flag_value( $assoc_args, 'network' ) ) {
137137
if ( ! is_multisite() ) {
138-
WP_CLI::error( 'This is not a multisite install.' );
138+
WP_CLI::error( 'This is not a multisite installation.' );
139139
}
140140
$assoc_args['blog_id'] = 0;
141141
if ( isset( $assoc_args['fields'] ) ) {
@@ -1149,7 +1149,7 @@ private function update_msuser_status( $user_ids, $pref, $value ) {
11491149

11501150
// If site is not multisite, then stop execution.
11511151
if ( ! is_multisite() ) {
1152-
WP_CLI::error( 'This is not a multisite install.' );
1152+
WP_CLI::error( 'This is not a multisite installation.' );
11531153
}
11541154

11551155
if ( 'spam' === $pref && '1' === $value ) {

0 commit comments

Comments
 (0)