]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/options-misc.php
Wordpress 2.3.3
[autoinstalls/wordpress.git] / wp-admin / options-misc.php
1 <?php
2 require_once('admin.php');
3
4 $title = __('Miscellaneous Options');
5 $parent_file = 'options-general.php';
6
7 include('admin-header.php');
8
9 ?>
10
11 <div class="wrap">
12 <h2><?php _e('Miscellaneous Options') ?></h2>
13 <form method="post" action="options.php">
14 <?php wp_nonce_field('update-options') ?>
15 <p class="submit"><input type="submit" name="Submit" value="<?php _e('Update Options &raquo;') ?>" /></p>
16 <fieldset class="options">
17 <legend><?php _e('Uploading'); ?></legend>
18 <table class="editform optiontable">
19 <tr valign="top">
20 <th scope="row"><?php _e('Store uploads in this folder'); ?>:</th>
21 <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" />
22 <br />
23 <?php _e('Default is <code>wp-content/uploads</code>'); ?>
24 </td>
25 </tr>
26 <tr>
27 <td></td>
28 <td>
29 <label for="uploads_use_yearmonth_folders">
30 <input name="uploads_use_yearmonth_folders" type="checkbox" id="uploads_use_yearmonth_folders" value="1" <?php checked('1', get_option('uploads_use_yearmonth_folders')); ?> />
31 <?php _e('Organize my uploads into month- and year-based folders'); ?>
32 </label>
33 </td>
34 </tr>
35 </table>
36 </fieldset>
37
38 <p><input name="use_linksupdate" type="checkbox" id="use_linksupdate" value="1" <?php checked('1', get_option('use_linksupdate')); ?> />
39 <label for="use_linksupdate"><?php _e('Track Links&#8217; Update Times') ?></label></p>
40 <p>
41 <label><input type="checkbox" name="hack_file" value="1" <?php checked('1', get_option('hack_file')); ?> /> <?php _e('Use legacy <code>my-hacks.php</code> file support') ?></label>
42 </p>
43
44 <p class="submit">
45 <input type="hidden" name="action" value="update" />
46 <input type="hidden" name="page_options" value="hack_file,use_linksupdate,uploads_use_yearmonth_folders,upload_path" />
47 <input type="submit" name="Submit" value="<?php _e('Update Options &raquo;') ?>" />
48 </p>
49 </form>
50 </div>
51
52 <?php include('./admin-footer.php'); ?>