Changeset 7883 for trunk/wp-admin/edit-form-comment.php
- Timestamp:
- 05/04/2008 10:37:06 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-form-comment.php
r7755 r7883 23 23 <div class="inside"> 24 24 25 <p><strong>< ?php _e('Approval Status') ?></strong></p>25 <p><strong><label for='comment_status'><?php _e('Approval Status') ?></label></strong></p> 26 26 <p> 27 <select name='comment_status' >27 <select name='comment_status' id='comment_status'> 28 28 <option<?php selected( $comment->comment_approved, '1' ); ?> value='1'><?php _e('Approved') ?></option> 29 29 <option<?php selected( $comment->comment_approved, '0' ); ?> value='0'><?php _e('Moderated') ?></option> … … 65 65 <div id="post-body"> 66 66 <div id="namediv" class="stuffbox"> 67 <h3>< ?php _e('Name') ?></h3>67 <h3><label for="name"><?php _e('Name') ?></label></h3> 68 68 <div class="inside"> 69 69 <input type="text" name="newcomment_author" size="30" value="<?php echo attribute_escape( $comment->comment_author ); ?>" tabindex="1" id="name" /> … … 72 72 73 73 <div id="emaildiv" class="stuffbox"> 74 <h3>< ?php _e('E-mail') ?></h3>74 <h3><label for="email"><?php _e('E-mail') ?></label></h3> 75 75 <div class="inside"> 76 76 <input type="text" name="newcomment_author_email" size="30" value="<?php echo attribute_escape( $comment->comment_author_email ); ?>" tabindex="2" id="email" /> … … 79 79 80 80 <div id="uridiv" class="stuffbox"> 81 <h3>< ?php _e('URL') ?></h3>81 <h3><label for="newcomment_author_url"><?php _e('URL') ?></label></h3> 82 82 <div class="inside"> 83 83 <input type="text" id="newcomment_author_url" name="newcomment_author_url" size="30" value="<?php echo attribute_escape( $comment->comment_author_url ); ?>" tabindex="3" /> … … 86 86 87 87 <div id="postdiv" class="postarea"> 88 <h3>< ?php _e('Comment') ?></h3>88 <h3><label for="content"><?php _e('Comment') ?></label></h3> 89 89 <?php the_editor($comment->comment_content, 'content', 'newcomment_author_url', false, 4); ?> 90 90 <?php wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false ); ?>
Note: See TracChangeset
for help on using the changeset viewer.