Changeset 6944

Show
Ignore:
Timestamp:
02/20/08 20:30:39 (7 months ago)
Author:
ryan
Message:

Remove label colons for niceblue widefat tables. Props filosofo. fixes #5939

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-admin/edit-link-category-form.php

    r6943 r6944  
    2626    <table class="niceblue"> 
    2727        <tr class="form-field form-required"> 
    28             <th scope="row" valign="top"><label for="name"><?php _e('Category name:') ?></label></th> 
     28            <th scope="row" valign="top"><label for="name"><?php _e('Category name') ?></label></th> 
    2929            <td><input name="name" id="name" type="text" value="<?php echo $category->name; ?>" size="40" /></td> 
    3030        </tr> 
    3131        <tr class="form-field"> 
    32             <th scope="row" valign="top"><label for="slug"><?php _e('Category slug:') ?></label></th> 
     32            <th scope="row" valign="top"><label for="slug"><?php _e('Category slug') ?></label></th> 
    3333            <td><input name="slug" id="slug" type="text" value="<?php echo $category->slug; ?>" size="40" /></td> 
    3434        </tr> 
    3535        <tr class="form-field"> 
    36             <th scope="row" valign="top"><label for="description"><?php _e('Description: (optional)') ?></label></th> 
     36            <th scope="row" valign="top"><label for="description"><?php _e('Description (optional)') ?></label></th> 
    3737            <td><textarea name="description" id="description" rows="5" cols="50" style="width: 97%;"><?php echo $category->description; ?></textarea></td> 
    3838        </tr> 
  • trunk/wp-admin/edit-tag-form.php

    r6943 r6944  
    2626    <table class="niceblue"> 
    2727        <tr class="form-field form-required"> 
    28             <th scope="row" valign="top"><label for="name"><?php _e('Tag name:') ?></label></th> 
     28            <th scope="row" valign="top"><label for="name"><?php _e('Tag name') ?></label></th> 
    2929            <td><input name="name" id="name" type="text" value="<?php echo attribute_escape($tag->name); ?>" size="40" /></td> 
    3030        </tr> 
    3131        <tr class="form-field"> 
    32             <th scope="row" valign="top"><label for="slug"><?php _e('Tag slug:') ?></label></th> 
     32            <th scope="row" valign="top"><label for="slug"><?php _e('Tag slug') ?></label></th> 
    3333            <td><input name="slug" id="slug" type="text" value="<?php echo attribute_escape($tag->slug); ?>" size="40" /></td> 
    3434        </tr> 
  • trunk/wp-admin/options-writing.php

    r6850 r6944  
    6565<th scope="row"><?php _e('Mail Server') ?></th> 
    6666<td><input name="mailserver_url" type="text" id="mailserver_url" value="<?php form_option('mailserver_url'); ?>" size="40" /> 
    67 <label for="mailserver_port"><?php _e('Port:') ?></label> 
     67<label for="mailserver_port"><?php _e('Port') ?></label> 
    6868<input name="mailserver_port" type="text" id="mailserver_port" value="<?php form_option('mailserver_port'); ?>" size="6" /> 
    6969</td>