Add line breaks at the end of network setup rules to avoid unintended merging with a subsequent line.
props socki03. fixes #29945. git-svn-id: https://develop.svn.wordpress.org/trunk@29899 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
801ce09508
commit
862c82c18f
@ -383,13 +383,14 @@ function network_step2( $errors = false ) {
|
||||
?>
|
||||
<ol>
|
||||
<li><p><?php printf( __( 'Add the following to your <code>wp-config.php</code> file in <code>%s</code> <strong>above</strong> the line reading <code>/* That’s all, stop editing! Happy blogging. */</code>:' ), $location_of_wp_config ); ?></p>
|
||||
<textarea class="code" readonly="readonly" cols="100" rows="6">
|
||||
<textarea class="code" readonly="readonly" cols="100" rows="7">
|
||||
define('MULTISITE', true);
|
||||
define('SUBDOMAIN_INSTALL', <?php echo $subdomain_install ? 'true' : 'false'; ?>);
|
||||
define('DOMAIN_CURRENT_SITE', '<?php echo $hostname; ?>');
|
||||
define('PATH_CURRENT_SITE', '<?php echo $base; ?>');
|
||||
define('SITE_ID_CURRENT_SITE', 1);
|
||||
define('BLOG_ID_CURRENT_SITE', 1);</textarea>
|
||||
define('BLOG_ID_CURRENT_SITE', 1);
|
||||
</textarea>
|
||||
<?php
|
||||
$keys_salts = array( 'AUTH_KEY' => '', 'SECURE_AUTH_KEY' => '', 'LOGGED_IN_KEY' => '', 'NONCE_KEY' => '', 'AUTH_SALT' => '', 'SECURE_AUTH_SALT' => '', 'LOGGED_IN_SALT' => '', 'NONCE_SALT' => '' );
|
||||
foreach ( $keys_salts as $c => $v ) {
|
||||
@ -470,7 +471,8 @@ define('BLOG_ID_CURRENT_SITE', 1);</textarea>
|
||||
</rules>
|
||||
</rewrite>
|
||||
</system.webServer>
|
||||
</configuration>';
|
||||
</configuration>
|
||||
';
|
||||
|
||||
echo '<li><p>';
|
||||
/* translators: 1: a filename like .htaccess. 2: a file path. */
|
||||
@ -506,6 +508,7 @@ RewriteRule ^ - [L]
|
||||
RewriteRule ^{$subdir_match}(wp-(content|admin|includes).*) {$rewrite_base}{$subdir_replacement_12} [L]
|
||||
RewriteRule ^{$subdir_match}(.*\.php)$ {$rewrite_base}$subdir_replacement_12 [L]
|
||||
RewriteRule . index.php [L]
|
||||
|
||||
EOF;
|
||||
|
||||
echo '<li><p>';
|
||||
|
Loading…
Reference in New Issue
Block a user