Make WordPress Core

Changeset 13466


Ignore:
Timestamp:
02/27/2010 06:48:43 PM (15 years ago)
Author:
wpmuguru
Message:

add full file paths in network install, see #12332

File:
1 edited

Legend:

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

    r13337 r13466  
    102102    }
    103103?>
    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>
    105105                <textarea name="htaccess" cols="120" rows="20">
    106106<?php echo wp_htmledit_pre( $htaccess_file ); ?>
     
    263263        <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>
    264264        <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>
    266266<?php step2_config(); ?>
    267267<?php step2_htaccess(); ?>
     
    287287    $wp_config_file = file( $config_sample );
    288288?>
    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>
    290290                <textarea name="wp-config" cols="120" rows="20">
    291291<?php
Note: See TracChangeset for help on using the changeset viewer.