Changeset 13466
- Timestamp:
- 02/27/2010 06:48:43 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/network.php
r13337 r13466 102 102 } 103 103 ?> 104 <li><p><?php _e( 'Replace the contents of your <code>.htaccess</code> with the following:'); ?></p>104 <li><p><?php printf( __( 'Replace the contents of your <code>%s.htaccess</code> with the following:' ), ABSPATH ); ?></p> 105 105 <textarea name="htaccess" cols="120" rows="20"> 106 106 <?php echo wp_htmledit_pre( $htaccess_file ); ?> … … 263 263 <p><?php _e( 'Complete the following steps to enable the features for creating a network of sites. <strong>Note:</strong> We recommend you make a backup copy of your existing <code>wp-config.php</code> and <code>.htaccess</code> files.' ); ?></p> 264 264 <ol> 265 <li><?php _e( 'Create a <code>blogs.dir</code> directory in your <code>wp-content</code> directory. This directory is used to stored uploaded media for your additional sites and must be writeable by the web server.'); ?></li>265 <li><?php printf( __( 'Create a <code>%s/blogs.dir</code> directory. This directory is used to stored uploaded media for your additional sites and must be writeable by the web server.' ), WP_CONTENT_DIR ); ?></li> 266 266 <?php step2_config(); ?> 267 267 <?php step2_htaccess(); ?> … … 287 287 $wp_config_file = file( $config_sample ); 288 288 ?> 289 <li><p><?php _e( 'Replace the contents of your <code>wp-config.php</code> with the following:'); ?></p>289 <li><p><?php printf( __( 'Replace the contents of <code>%swp-config.php</code> with the following:' ), ABSPATH ); ?></p> 290 290 <textarea name="wp-config" cols="120" rows="20"> 291 291 <?php
Note: See TracChangeset
for help on using the changeset viewer.