Make WordPress Core

Changeset 29899


Ignore:
Timestamp:
10/15/2014 02:12:13 PM (10 years ago)
Author:
SergeyBiryukov
Message:

Add line breaks at the end of network setup rules to avoid unintended merging with a subsequent line.

props socki03.
fixes #29945.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/network.php

    r29206 r29899  
    384384        <ol>
    385385            <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&#8217;s all, stop editing! Happy blogging. */</code>:' ), $location_of_wp_config ); ?></p>
    386                 <textarea class="code" readonly="readonly" cols="100" rows="6">
     386                <textarea class="code" readonly="readonly" cols="100" rows="7">
    387387define('MULTISITE', true);
    388388define('SUBDOMAIN_INSTALL', <?php echo $subdomain_install ? 'true' : 'false'; ?>);
     
    390390define('PATH_CURRENT_SITE', '<?php echo $base; ?>');
    391391define('SITE_ID_CURRENT_SITE', 1);
    392 define('BLOG_ID_CURRENT_SITE', 1);</textarea>
     392define('BLOG_ID_CURRENT_SITE', 1);
     393</textarea>
    393394<?php
    394395    $keys_salts = array( 'AUTH_KEY' => '', 'SECURE_AUTH_KEY' => '', 'LOGGED_IN_KEY' => '', 'NONCE_KEY' => '', 'AUTH_SALT' => '', 'SECURE_AUTH_SALT' => '', 'LOGGED_IN_SALT' => '', 'NONCE_SALT' => '' );
     
    471472        </rewrite>
    472473    </system.webServer>
    473 </configuration>';
     474</configuration>
     475';
    474476
    475477        echo '<li><p>';
     
    507509RewriteRule ^{$subdir_match}(.*\.php)$ {$rewrite_base}$subdir_replacement_12 [L]
    508510RewriteRule . index.php [L]
     511
    509512EOF;
    510513
Note: See TracChangeset for help on using the changeset viewer.