Changeset 27604
- Timestamp:
- 03/19/2014 05:26:24 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/network.php
r27369 r27604 470 470 </configuration>'; 471 471 472 ?> 473 <li><p><?php printf( __( 'Add the following to your <code>web.config</code> file in <code>%s</code>, <strong>replacing</strong> other WordPress rules:' ), $home_path ); ?></p> 474 <?php 472 echo '<li><p>'; 473 /* translators: 1: a filename like .htaccess. 2: a file path. */ 474 printf( __( 'Add the following to your %1$s file in %2$s, <strong>replacing</strong> other WordPress rules:' ), 475 '<code>web.config</code>', '<code>' . $home_path . '</code>' ); 476 echo '</p>'; 475 477 if ( ! $subdomain_install && WP_CONTENT_DIR != ABSPATH . 'wp-content' ) 476 478 echo '<p><strong>' . __('Warning:') . ' ' . __( 'Subdirectory networks may not be fully compatible with custom wp-content directories.' ) . '</strong></p>'; … … 504 506 EOF; 505 507 506 ?> 507 <li><p><?php printf( __( 'Add the following to your <code>.htaccess</code> file in <code>%s</code>, <strong>replacing</strong> other WordPress rules:' ), $home_path ); ?></p> 508 <?php 508 echo '<li><p>'; 509 /* translators: 1: a filename like .htaccess. 2: a file path. */ 510 printf( __( 'Add the following to your %1$s file in %2$s, <strong>replacing</strong> other WordPress rules:' ), 511 '<code>.htaccess</code>', '<code>' . $home_path . '</code>' ); 512 echo '</p>'; 509 513 if ( ! $subdomain_install && WP_CONTENT_DIR != ABSPATH . 'wp-content' ) 510 514 echo '<p><strong>' . __('Warning:') . ' ' . __( 'Subdirectory networks may not be fully compatible with custom wp-content directories.' ) . '</strong></p>';
Note: See TracChangeset
for help on using the changeset viewer.