`hackificator` bails on this file because of mixed quote styles on some HTML attributes.

See #27881.

Built from https://develop.svn.wordpress.org/trunk@28484


git-svn-id: http://core.svn.wordpress.org/trunk@28310 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Scott Taylor 2014-05-18 21:47:14 +00:00
parent 6a765cdd03
commit a659275338
1 changed files with 5 additions and 5 deletions

View File

@ -111,7 +111,7 @@ case 'spam' :
$nonce_action .= $comment_id;
?>
<div class='wrap'>
<div class="wrap">
<div class="narrow">
@ -181,7 +181,7 @@ if ( $comment->comment_approved != '0' ) { // if not unapproved
<p><?php _e('Are you sure you want to do this?'); ?></p>
<form action='comment.php' method='get'>
<form action="comment.php" method="get">
<table width="100%">
<tr>
@ -191,9 +191,9 @@ if ( $comment->comment_approved != '0' ) { // if not unapproved
</table>
<?php wp_nonce_field( $nonce_action ); ?>
<input type='hidden' name='action' value='<?php echo esc_attr($formaction); ?>' />
<input type='hidden' name='c' value='<?php echo esc_attr($comment->comment_ID); ?>' />
<input type='hidden' name='noredir' value='1' />
<input type="hidden" name="action" value="<?php echo esc_attr($formaction); ?>" />
<input type="hidden" name="c" value="<?php echo esc_attr($comment->comment_ID); ?>" />
<input type="hidden" name="noredir" value="1" />
</form>
</div>