Make WordPress Core


Ignore:
Timestamp:
11/01/2007 06:23:16 AM (19 years ago)
Author:
ryan
Message:

JS/AJAX form validation from mdawaffe. fixes #5299

File:
1 edited

Legend:

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

    r6299 r6303  
    2525<?php wp_nonce_field($nonce_action); ?>
    2626        <table class="editform" width="100%" cellspacing="2" cellpadding="5">
    27                 <tr>
     27                <tr class="form-field form-required">
    2828                        <th width="33%" scope="row" valign="top"><label for="name"><?php _e('Category name:') ?></label></th>
    2929                        <td width="67%"><input name="name" id="name" type="text" value="<?php echo $category->name; ?>" size="40" /></td>
    3030                </tr>
    31                 <tr>
     31                <tr class="form-field">
    3232                        <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>
    35                 <tr>
     35                <tr class="form-field">
    3636                        <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>
Note: See TracChangeset for help on using the changeset viewer.