Ticket #3600: content-type.diff
| File content-type.diff, 1.4 KB (added by , 19 years ago) |
|---|
-
wp-admin/options-misc.php
35 35 </table> 36 36 </fieldset> 37 37 38 <fieldset class="options"> 39 <legend><?php _e('Content MIME Type'); ?></legend> 40 <p><input type="radio" id="html_type_html" name="html_type" value="text/html" <?php checked('text/html', get_option('html_type')); ?> /> 41 <label for="html_type_html"><?php _e('text/html') ?></label></p> 42 <p><input type="radio" id="html_type_xhtml" name="html_type" value="application/xhtml+xml" <?php checked('application/xhtml+xml', get_option('html_type')); ?> /> 43 <label for="html_type_xhtml"><?php _e('application/xhtml+xml') ?></label></p> 44 </fieldset> 45 38 46 <p><input name="use_linksupdate" type="checkbox" id="use_linksupdate" value="1" <?php checked('1', get_option('use_linksupdate')); ?> /> 39 47 <label for="use_linksupdate"><?php _e('Track Bookmarks’ Update Times') ?></label></p> 40 48 <p> … … 43 51 44 52 <p class="submit"> 45 53 <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 " />54 <input type="hidden" name="page_options" value="hack_file,use_linksupdate,uploads_use_yearmonth_folders,upload_path,html_type" /> 47 55 <input type="submit" name="Submit" value="<?php _e('Update Options »') ?>" /> 48 56 </p> 49 57 </form>