Ticket #15753: 15753-2.patch
| File 15753-2.patch, 1.1 KB (added by SergeyBiryukov, 2 years ago) |
|---|
-
wp-admin/network.php
336 336 <h3><?php esc_html_e( 'Enabling the Network' ); ?></h3> 337 337 <p><?php _e( 'Complete the following steps to enable the features for creating a network of sites.' ); ?></p> 338 338 <div class="updated inline"><p><?php 339 if ( iis7_supports_permalinks() ) 339 if ( file_exists( ABSPATH . '.htaccess' ) ) 340 _e( '<strong>Caution:</strong> We recommend you back up your existing <code>wp-config.php</code> and <code>.htaccess</code> files.' ); 341 elseif ( file_exists( ABSPATH . 'web.config' ) ) 342 _e( '<strong>Caution:</strong> We recommend you back up your existing <code>wp-config.php</code> and <code>web.config</code> files.' ); 343 else 340 344 _e( '<strong>Caution:</strong> We recommend you back up your existing <code>wp-config.php</code> file.' ); 341 else342 _e( '<strong>Caution:</strong> We recommend you back up your existing <code>wp-config.php</code> and <code>.htaccess</code> files.' );343 345 ?></p></div> 344 346 <?php 345 347 }
