Changeset 36690
- Timestamp:
- 02/24/2016 06:39:32 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/network.php
r35971 r36690 377 377 <div class="updated inline"><p><?php 378 378 if ( file_exists( $home_path . '.htaccess' ) ) { 379 echo '<strong>' . __( 'Caution:' ) . '</strong> '; 379 380 printf( 380 381 /* translators: 1: wp-config.php 2: .htaccess */ 381 __( ' <strong>Caution:</strong>We recommend you back up your existing %1$s and %2$s files.' ),382 __( 'We recommend you back up your existing %1$s and %2$s files.' ), 382 383 '<code>wp-config.php</code>', 383 384 '<code>.htaccess</code>' 384 385 ); 385 386 } elseif ( file_exists( $home_path . 'web.config' ) ) { 387 echo '<strong>' . __( 'Caution:' ) . '</strong> '; 386 388 printf( 387 389 /* translators: 1: wp-config.php 2: web.config */ 388 __( ' <strong>Caution:</strong>We recommend you back up your existing %1$s and %2$s files.' ),390 __( 'We recommend you back up your existing %1$s and %2$s files.' ), 389 391 '<code>wp-config.php</code>', 390 392 '<code>web.config</code>' 391 393 ); 392 394 } else { 395 echo '<strong>' . __( 'Caution:' ) . '</strong> '; 393 396 printf( 394 397 /* translators: 1: wp-config.php */ 395 __( ' <strong>Caution:</strong>We recommend you back up your existing %s file.' ),398 __( 'We recommend you back up your existing %s file.' ), 396 399 '<code>wp-config.php</code>' 397 400 );
Note: See TracChangeset
for help on using the changeset viewer.