Changeset 11109 for trunk/wp-admin/edit-form-comment.php
- Timestamp:
- 04/28/2009 05:58:45 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-form-comment.php
r11104 r11109 27 27 <?php 28 28 29 $email = attr ibute_escape( $comment->comment_author_email );30 $url = attr ibute_escape( $comment->comment_author_url );29 $email = attr( $comment->comment_author_email ); 30 $url = attr( $comment->comment_author_url ); 31 31 // add_meta_box('submitdiv', __('Save'), 'comment_submit_meta_box', 'comment', 'side', 'core'); 32 32 ?> … … 91 91 <tr valign="top"> 92 92 <td class="first"><?php _e( 'Name:' ); ?></td> 93 <td><input type="text" name="newcomment_author" size="30" value="<?php echo attr ibute_escape( $comment->comment_author ); ?>" tabindex="1" id="name" /></td>93 <td><input type="text" name="newcomment_author" size="30" value="<?php echo attr( $comment->comment_author ); ?>" tabindex="1" id="name" /></td> 94 94 </tr> 95 95 <tr valign="top">
Note: See TracChangeset
for help on using the changeset viewer.