Changeset 44466 for trunk/src/wp-admin/edit-form-comment.php
- Timestamp:
- 01/08/2019 06:18:17 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/edit-form-comment.php
r44214 r44466 42 42 <div class="inside"> 43 43 <fieldset> 44 <legend class="edit-comment-author"><?php _e( 'Author' ); ?></legend> 44 <h2 class="edit-comment-author"> 45 <span><?php _e( 'Author' ); ?></span> 46 </h2> 45 47 <table class="form-table editcomment"> 46 48 <tbody> 47 49 <tr> 48 <td class="first"><label for="name"><?php _e( 'Name :' ); ?></label></td>50 <td class="first"><label for="name"><?php _e( 'Name' ); ?></label></td> 49 51 <td><input type="text" name="newcomment_author" size="30" value="<?php echo esc_attr( $comment->comment_author ); ?>" id="name" /></td> 50 52 </tr> 51 53 <tr> 52 <td class="first"><label for="email"><?php _e( 'Email :' ); ?></label></td>54 <td class="first"><label for="email"><?php _e( 'Email' ); ?></label></td> 53 55 <td> 54 56 <input type="text" name="newcomment_author_email" size="30" value="<?php echo $comment->comment_author_email; ?>" id="email" /> … … 56 58 </tr> 57 59 <tr> 58 <td class="first"><label for="newcomment_author_url"><?php _e( 'URL :' ); ?></label></td>60 <td class="first"><label for="newcomment_author_url"><?php _e( 'URL' ); ?></label></td> 59 61 <td> 60 62 <input type="text" id="newcomment_author_url" name="newcomment_author_url" size="30" class="code" value="<?php echo esc_attr( $comment->comment_author_url ); ?>" /> … … 63 65 </tbody> 64 66 </table> 65 <br />66 67 </fieldset> 67 68 </div>
Note: See TracChangeset
for help on using the changeset viewer.