Changeset 11204 for trunk/wp-admin/comment.php
- Timestamp:
- 05/05/2009 07:43:53 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/comment.php
r11104 r11204 91 91 <table width="100%"> 92 92 <tr> 93 <td><input type='button' class="button" value='<?php _ea('No'); ?>' onclick="self.location='<?php echo admin_url('edit-comments.php'); ?>" /></td>94 <td class="textright"><input type='submit' class="button" value='<?php echo attr($button); ?>' /></td>93 <td><input type='button' class="button" value='<?php esc_attr_e('No'); ?>' onclick="self.location='<?php echo admin_url('edit-comments.php'); ?>" /></td> 94 <td class="textright"><input type='submit' class="button" value='<?php echo esc_attr($button); ?>' /></td> 95 95 </tr> 96 96 </table> 97 97 98 98 <?php wp_nonce_field( $nonce_action ); ?> 99 <input type='hidden' name='action' value='<?php echo attr($formaction); ?>' />99 <input type='hidden' name='action' value='<?php echo esc_attr($formaction); ?>' /> 100 100 <?php if ( 'spam' == $_GET['dt'] ) { ?> 101 101 <input type='hidden' name='dt' value='spam' /> 102 102 <?php } ?> 103 <input type='hidden' name='p' value='<?php echo attr($comment->comment_post_ID); ?>' />104 <input type='hidden' name='c' value='<?php echo attr($comment->comment_ID); ?>' />103 <input type='hidden' name='p' value='<?php echo esc_attr($comment->comment_post_ID); ?>' /> 104 <input type='hidden' name='c' value='<?php echo esc_attr($comment->comment_ID); ?>' /> 105 105 <input type='hidden' name='noredir' value='1' /> 106 106 </form>
Note: See TracChangeset
for help on using the changeset viewer.