HTML and JS cleanup

git-svn-id: http://svn.automattic.com/wordpress/trunk@3422 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
matt
2006-01-10 05:16:17 +00:00
parent bfbe1f2def
commit 759faa6b9a
15 changed files with 334 additions and 322 deletions

View File

@@ -14,20 +14,23 @@ include('admin-header.php');
<fieldset class="options">
<legend><?php _e('Uploading'); ?></legend>
<table width="100%" cellspacing="2" cellpadding="5" class="editform">
<tr valign="top"><th scope="row"><?php _e('Store uploads in this folder'); ?>:</th>
<td>
<input name="fileupload_realpath" type="text" id="fileupload_realpath" class="code" value="<?php echo str_replace(ABSPATH, '', get_settings('fileupload_realpath')); ?>" size="40" />
<table class="editform optiontable">
<tr valign="top">
<th scope="row"><?php _e('Store uploads in this folder'); ?>:</th>
<td><input name="fileupload_realpath" type="text" id="fileupload_realpath" class="code" value="<?php echo str_replace(ABSPATH, '', get_settings('fileupload_realpath')); ?>" size="40" />
<br />
<?php _e('Default is <code>wp-content/uploads</code>'); ?>
</td></tr>
<tr valign="top"><th scope="row" width="33%"> </th>
</td>
</tr>
<tr>
<td></td>
<td>
<label for="uploads_use_yearmonth_folders">
<input name="uploads_use_yearmonth_folders" type="checkbox" id="uploads_use_yearmonth_folders" value="1" <?php checked('1', get_settings('uploads_use_yearmonth_folders')); ?> />
<?php _e('Organize my uploads into month- and year-based folders'); ?>
</label>
</td></tr>
</td>
</tr>
</table>
</fieldset>