Skip to content

Commit 4f74ef5

Browse files
committed
hackificator bails on this file because of mixed quote styles on some HTML attributes.
See #27881. git-svn-id: https://develop.svn.wordpress.org/trunk@28484 602fd350-edb4-49c9-b593-d223f7449a82
1 parent c691984 commit 4f74ef5

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/wp-admin/comment.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ function comment_footer_die( $msg ) {
111111
$nonce_action .= $comment_id;
112112

113113
?>
114-
<div class='wrap'>
114+
<div class="wrap">
115115

116116
<div class="narrow">
117117

@@ -181,7 +181,7 @@ function comment_footer_die( $msg ) {
181181

182182
<p><?php _e('Are you sure you want to do this?'); ?></p>
183183

184-
<form action='comment.php' method='get'>
184+
<form action="comment.php" method="get">
185185

186186
<table width="100%">
187187
<tr>
@@ -191,9 +191,9 @@ function comment_footer_die( $msg ) {
191191
</table>
192192

193193
<?php wp_nonce_field( $nonce_action ); ?>
194-
<input type='hidden' name='action' value='<?php echo esc_attr($formaction); ?>' />
195-
<input type='hidden' name='c' value='<?php echo esc_attr($comment->comment_ID); ?>' />
196-
<input type='hidden' name='noredir' value='1' />
194+
<input type="hidden" name="action" value="<?php echo esc_attr($formaction); ?>" />
195+
<input type="hidden" name="c" value="<?php echo esc_attr($comment->comment_ID); ?>" />
196+
<input type="hidden" name="noredir" value="1" />
197197
</form>
198198

199199
</div>

0 commit comments

Comments
 (0)