Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion features/core-install.feature
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ Feature: Install WordPress core
"""
And STDOUT should contain:
"""
Success: Network installed. Don't forget to set up rewrite rules.
Success: Network installed. Don't forget to set up rewrite rules (and a .htaccess file, if using Apache).
"""

Scenario: Install WordPress multisite without adding multisite constants to wp-config file
Expand Down
6 changes: 3 additions & 3 deletions features/core.feature
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ Feature: Manage WordPress installation
"""
Set up multisite database tables.
Added multisite constants to 'wp-config.php'.
Success: Network installed. Don't forget to set up rewrite rules.
Success: Network installed. Don't forget to set up rewrite rules (and a .htaccess file, if using Apache).
"""
And STDERR should be empty

Expand Down Expand Up @@ -190,7 +190,7 @@ Feature: Manage WordPress installation
Created single site database tables.
Set up multisite database tables.
Added multisite constants to 'wp-config.php'.
Success: Network installed. Don't forget to set up rewrite rules.
Success: Network installed. Don't forget to set up rewrite rules (and a .htaccess file, if using Apache).
"""
And STDERR should be empty

Expand Down Expand Up @@ -366,7 +366,7 @@ Feature: Manage WordPress installation
Then STDOUT should be:
"""
Set up multisite database tables.
Success: Network installed. Don't forget to set up rewrite rules.
Success: Network installed. Don't forget to set up rewrite rules (and a .htaccess file, if using Apache).
"""
And STDERR should contain:
"""
Expand Down
4 changes: 2 additions & 2 deletions src/Core_Command.php
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ public function multisite_convert( $args, $assoc_args ) {
}

if ( $this->_multisite_convert( $assoc_args ) ) {
WP_CLI::success( "Network installed. Don't forget to set up rewrite rules." );
WP_CLI::success( "Network installed. Don't forget to set up rewrite rules (and a .htaccess file, if using Apache)." );
}
}

Expand Down Expand Up @@ -509,7 +509,7 @@ public function multisite_install( $args, $assoc_args ) {
);
}

WP_CLI::success( "Network installed. Don't forget to set up rewrite rules." );
WP_CLI::success( "Network installed. Don't forget to set up rewrite rules (and a .htaccess file, if using Apache)." );
}

private static function _set_multisite_defaults( $assoc_args ) {
Expand Down