Changeset 7883 for trunk/wp-admin/options-misc.php
- Timestamp:
- 05/04/2008 10:37:06 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-misc.php
r7498 r7883 16 16 <table class="form-table"> 17 17 <tr valign="top"> 18 <th scope="row">< ?php _e('Store uploads in this folder'); ?></th>18 <th scope="row"><label for="upload_path"><?php _e('Store uploads in this folder'); ?></label></th> 19 19 <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" /> 20 20 <br /> … … 24 24 25 25 <tr valign="top"> 26 <th scope="row">< ?php _e('Full URL path to files (optional)'); ?></th>26 <th scope="row"><label for="upload_url_path"><?php _e('Full URL path to files (optional)'); ?></label></th> 27 27 <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" /> 28 28 </td> … … 45 45 <tr valign="top"> 46 46 <th scope="row"><?php _e('Thumbnail size') ?></th> 47 <td> 47 <td><fieldset><legend class="hidden"><?php _e('Thumbnail size') ?></legend> 48 48 <label for="thumbnail_size_w"><?php _e('Width'); ?></label> 49 49 <input name="thumbnail_size_w" type="text" id="thumbnail_size_w" value="<?php form_option('thumbnail_size_w'); ?>" size="6" /> … … 52 52 <input name="thumbnail_crop" type="checkbox" id="thumbnail_crop" value="1" <?php checked('1', get_option('thumbnail_crop')); ?>/> 53 53 <label for="thumbnail_crop"><?php _e('Crop thumbnail to exact dimensions (normally thumbnails are proportional)'); ?></label> 54 </ td>54 </fieldset></td> 55 55 </tr> 56 56 <tr valign="top"> 57 57 <th scope="row"><?php _e('Medium size') ?></th> 58 <td> 58 <td><fieldset><legend class="hidden"><?php _e('Medium size') ?></legend> 59 59 <label for="medium_size_w"><?php _e('Max Width'); ?></label> 60 60 <input name="medium_size_w" type="text" id="medium_size_w" value="<?php form_option('medium_size_w'); ?>" size="6" /> 61 61 <label for="medium_size_h"><?php _e('Max Height'); ?></label> 62 62 <input name="medium_size_h" type="text" id="medium_size_h" value="<?php form_option('medium_size_h'); ?>" size="6" /> 63 </ td>63 </fieldset></td> 64 64 </tr> 65 65 </table>
Note: See TracChangeset
for help on using the changeset viewer.