Changeset 9343 for trunk/wp-admin/options-misc.php
- Timestamp:
- 10/25/2008 07:55:56 PM (17 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/options-misc.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-misc.php
r9320 r9343 25 25 <?php wp_nonce_field('misc-options') ?> 26 26 27 <p class="submit submit-top"> 28 <input type="submit" name="Submit" value="<?php _e('Save Changes') ?>" class="button" /> 29 </p> 30 31 <h3><?php _e('Uploading'); ?></h3> 27 <h3><?php _e('Uploading Files'); ?></h3> 32 28 <table class="form-table"> 33 29 <tr valign="top"> 34 30 <th scope="row"><label for="upload_path"><?php _e('Store uploads in this folder'); ?></label></th> 35 31 <td><input name="upload_path" type="text" id="upload_path" class="code" value="<?php echo attribute_escape(str_replace(ABSPATH, '', get_option('upload_path'))); ?>" size="40" /> 36 <br /> 37 <?php _e('Default is <code>wp-content/uploads</code>'); ?> 32 <span class="setting-description"><?php _e('Default is <code>wp-content/uploads</code>'); ?></span> 38 33 </td> 39 34 </tr> 40 35 41 36 <tr valign="top"> 42 <th scope="row"><label for="upload_url_path"><?php _e('Full URL path to files (optional)'); ?></label></th>37 <th scope="row"><label for="upload_url_path"><?php _e('Full URL path to files'); ?></label></th> 43 38 <td><input name="upload_url_path" type="text" id="upload_url_path" class="code" value="<?php echo attribute_escape( get_option('upload_url_path')); ?>" size="40" /> 39 <span class="setting-description"><?php _e('Configuring this is optional by default it should be blank'); ?></span> 44 40 </td> 45 41 </tr>
Note: See TracChangeset
for help on using the changeset viewer.