]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/options-misc.php
711a4ccdc7529ba9b3f4f1caf243594d322eb923
[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
15 <fieldset class="options">
16 <legend><?php _e('Uploading'); ?></legend>
17 <table class="editform optiontable">
18 <tr valign="top">
19 <th scope="row"><?php _e('Store uploads in this folder'); ?>:</th>
20 <td><input name="upload_path" type="text" id="upload_path" class="code" value="<?php echo str_replace(ABSPATH, '', get_settings('upload_path')); ?>" size="40" />
21 <br />
22 <?php _e('Default is <code>wp-content/uploads</code>'); ?>
23 </td>
24 </tr>
25 <tr>
26 <td></td>
27 <td>
28 <label for="uploads_use_yearmonth_folders">
29 <input name="uploads_use_yearmonth_folders" type="checkbox" id="uploads_use_yearmonth_folders" value="1" <?php checked('1', get_settings('uploads_use_yearmonth_folders')); ?> />
30 <?php _e('Organize my uploads into month- and year-based folders'); ?>
31 </label>
32 </td>
33 </tr>
34 </table>
35 </fieldset>
36
37 <p><input name="use_linksupdate" type="checkbox" id="use_linksupdate" value="1" <?php checked('1', get_settings('use_linksupdate')); ?> />
38 <label for="use_linksupdate"><?php _e('Track Links&#8217; Update Times') ?></label></p>
39 <p>
40 <label><input type="checkbox" name="hack_file" value="1" <?php checked('1', get_settings('hack_file')); ?> /> <?php _e('Use legacy <code>my-hacks.php</code> file support') ?></label>
41 </p>
42
43 <p class="submit">
44 <input type="hidden" name="action" value="update" />
45 <input type="hidden" name="page_options" value="hack_file,use_linksupdate,uploads_use_yearmonth_folders,upload_path" /> 
46 <input type="submit" name="Submit" value="<?php _e('Update Options') ?> &raquo;" />
47 </p>
48 </form> 
49 </div>
50
51 <?php include('./admin-footer.php'); ?>