Make WordPress Core


Ignore:
Timestamp:
01/10/2006 05:16:17 AM (20 years ago)
Author:
matt
Message:

HTML and JS cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/options-general.php

    r3112 r3422  
    11<?php
    2 require_once('admin.php');
     2require_once('./admin.php');
    33
    44$title = __('General Options');
    55$parent_file = 'options-general.php';
    66
    7 include('admin-header.php');
     7include('./admin-header.php');
    88?>
    99 
    10 <div class="wrap">
    11 <h2><?php _e('General Options') ?></h2>
    12 <form name="form1" method="post" action="options.php">
    13 <input type="hidden" name="action" value="update" />
    14 <input type="hidden" name="page_options" value="blogname,blogdescription,siteurl,admin_email,users_can_register,gmt_offset,date_format,time_format,home,start_of_week,comment_registration,default_role" />
    15 <table width="100%" cellspacing="2" cellpadding="5" class="editform">
     10<div class="wrap">
     11<h2><?php _e('General Options') ?></h2>
     12<form method="post" action="options.php">
     13<table class="optiontable">
    1614<tr valign="top">
    17 <th width="33%" scope="row"><?php _e('Weblog title:') ?></th>
     15<th scope="row"><?php _e('Weblog title:') ?></th>
    1816<td><input name="blogname" type="text" id="blogname" value="<?php form_option('blogname'); ?>" size="40" /></td>
    1917</tr>
     
    6361<fieldset class="options">
    6462<legend><?php _e('Date and Time') ?></legend>
    65 <table width="100%" cellspacing="2" cellpadding="5" class="editform">
     63<table class="optiontable">
    6664<tr>
    67 <th scope="row" width="33%"><?php _e('<abbr title="Coordinated Universal Time">UTC</abbr> time is:') ?> </th>
     65<th scope="row"><?php _e('<abbr title="Coordinated Universal Time">UTC</abbr> time is:') ?> </th>
    6866<td><code><?php echo gmdate('Y-m-d g:i:s a'); ?></code></td>
    6967</tr>
     
    9997</select></td>
    10098</tr>
     99</table>
     100</fieldset>
    101101
    102 </table>
     102<p class="submit"><input type="submit" name="Submit" value="<?php _e('Update Options') ?> &raquo;" />
     103<input type="hidden" name="action" value="update" />
     104<input type="hidden" name="page_options" value="blogname,blogdescription,siteurl,admin_email,users_can_register,gmt_offset,date_format,time_format,home,start_of_week,comment_registration,default_role" />
     105</p>
     106</form>
    103107
    104 </fieldset>
    105 <p class="submit">
    106 <input type="submit" name="Submit" value="<?php _e('Update Options') ?> &raquo;" />
    107 </p>
    108 </form>
    109108</div>
    110 <?php include("admin-footer.php") ?>
     109
     110<?php include('./admin-footer.php') ?>
Note: See TracChangeset for help on using the changeset viewer.