<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; }
#msg ul, pre { overflow: auto; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[12494] branches/2.9/wp-admin/includes/template.php:
  Add escaping to _wp_comment_row().</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/12494">12494</a></dd>
<dt>Author</dt> <dd>ryan</dd>
<dt>Date</dt> <dd>2009-12-22 17:01:30 +0000 (Tue, 22 Dec 2009)</dd>
</dl>

<h3>Log Message</h3>
<pre>Add escaping to _wp_comment_row(). Props Denis-de-Bernardy. fixes <a href="http://trac.wordpress.org/ticket/11492">#11492</a> for 2.9</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#branches29wpadminincludestemplatephp">branches/2.9/wp-admin/includes/template.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="branches29wpadminincludestemplatephp"></a>
<div class="modfile"><h4>Modified: branches/2.9/wp-admin/includes/template.php (12493 => 12494)</h4>
<pre class="diff"><span>
<span class="info">--- branches/2.9/wp-admin/includes/template.php        2009-12-22 17:00:54 UTC (rev 12493)
+++ branches/2.9/wp-admin/includes/template.php        2009-12-22 17:01:30 UTC (rev 12494)
</span><span class="lines">@@ -2114,6 +2114,7 @@
</span><span class="cx">                 $del_nonce = esc_html( '_wpnonce=' . wp_create_nonce( &quot;delete-comment_$comment-&gt;comment_ID&quot; ) );
</span><span class="cx">                 $approve_nonce = esc_html( '_wpnonce=' . wp_create_nonce( &quot;approve-comment_$comment-&gt;comment_ID&quot; ) );
</span><span class="cx"> 
</span><ins>+                $comment_url = esc_url(get_comment_link($comment-&gt;comment_ID));
</ins><span class="cx">                 $approve_url = esc_url( &quot;comment.php?action=approvecomment&amp;p=$post-&gt;ID&amp;c=$comment-&gt;comment_ID&amp;$approve_nonce&quot; );
</span><span class="cx">                 $unapprove_url = esc_url( &quot;comment.php?action=unapprovecomment&amp;p=$post-&gt;ID&amp;c=$comment-&gt;comment_ID&amp;$approve_nonce&quot; );
</span><span class="cx">                 $spam_url = esc_url( &quot;comment.php?action=spamcomment&amp;p=$post-&gt;ID&amp;c=$comment-&gt;comment_ID&amp;$del_nonce&quot; );
</span><span class="lines">@@ -2145,7 +2146,7 @@
</span><span class="cx">                         case 'comment':
</span><span class="cx">                                 echo &quot;&lt;td $attributes&gt;&quot;;
</span><span class="cx">                                 echo '&lt;div id=&quot;submitted-on&quot;&gt;';
</span><del>-                                printf(__('Submitted on &lt;a href=&quot;%1$s&quot;&gt;%2$s at %3$s&lt;/a&gt;'), get_comment_link($comment-&gt;comment_ID), get_comment_date(__('Y/m/d')), get_comment_date(__('g:ia')));
</del><ins>+                                printf(__('Submitted on &lt;a href=&quot;%1$s&quot;&gt;%2$s at %3$s&lt;/a&gt;'), $comment_url, get_comment_date(__('Y/m/d')), get_comment_date(__('g:ia')));
</ins><span class="cx">                                 echo '&lt;/div&gt;';
</span><span class="cx">                                 comment_text();
</span><span class="cx">                                 if ( $user_can ) { ?&gt;
</span><span class="lines">@@ -2172,16 +2173,16 @@
</span><span class="cx"> 
</span><span class="cx">                                         if ( $comment_status &amp;&amp; 'all' != $comment_status ) { // not looking at all comments
</span><span class="cx">                                                 if ( 'approved' == $the_comment_status )
</span><del>-                                                        $actions['unapprove'] = &quot;&lt;a href='$unapprove_url' class='delete:the-comment-list:comment-$comment-&gt;comment_ID:e7e7d3:action=dim-comment&amp;amp;new=unapproved vim-u vim-destructive' title='&quot; . __( 'Unapprove this comment' ) . &quot;'&gt;&quot; . __( 'Unapprove' ) . '&lt;/a&gt;';
</del><ins>+                                                        $actions['unapprove'] = &quot;&lt;a href='$unapprove_url' class='delete:the-comment-list:comment-$comment-&gt;comment_ID:e7e7d3:action=dim-comment&amp;amp;new=unapproved vim-u vim-destructive' title='&quot; . esc_attr__( 'Unapprove this comment' ) . &quot;'&gt;&quot; . __( 'Unapprove' ) . '&lt;/a&gt;';
</ins><span class="cx">                                                 else if ( 'unapproved' == $the_comment_status )
</span><del>-                                                        $actions['approve'] = &quot;&lt;a href='$approve_url' class='delete:the-comment-list:comment-$comment-&gt;comment_ID:e7e7d3:action=dim-comment&amp;amp;new=approved vim-a vim-destructive' title='&quot; . __( 'Approve this comment' ) . &quot;'&gt;&quot; . __( 'Approve' ) . '&lt;/a&gt;';
</del><ins>+                                                        $actions['approve'] = &quot;&lt;a href='$approve_url' class='delete:the-comment-list:comment-$comment-&gt;comment_ID:e7e7d3:action=dim-comment&amp;amp;new=approved vim-a vim-destructive' title='&quot; . esc_attr__( 'Approve this comment' ) . &quot;'&gt;&quot; . __( 'Approve' ) . '&lt;/a&gt;';
</ins><span class="cx">                                         } else {
</span><del>-                                                $actions['approve'] = &quot;&lt;a href='$approve_url' class='dim:the-comment-list:comment-$comment-&gt;comment_ID:unapproved:e7e7d3:e7e7d3:new=approved vim-a' title='&quot; . __( 'Approve this comment' ) . &quot;'&gt;&quot; . __( 'Approve' ) . '&lt;/a&gt;';
-                                                $actions['unapprove'] = &quot;&lt;a href='$unapprove_url' class='dim:the-comment-list:comment-$comment-&gt;comment_ID:unapproved:e7e7d3:e7e7d3:new=unapproved vim-u' title='&quot; . __( 'Unapprove this comment' ) . &quot;'&gt;&quot; . __( 'Unapprove' ) . '&lt;/a&gt;';
</del><ins>+                                                $actions['approve'] = &quot;&lt;a href='$approve_url' class='dim:the-comment-list:comment-$comment-&gt;comment_ID:unapproved:e7e7d3:e7e7d3:new=approved vim-a' title='&quot; . esc_attr__( 'Approve this comment' ) . &quot;'&gt;&quot; . __( 'Approve' ) . '&lt;/a&gt;';
+                                                $actions['unapprove'] = &quot;&lt;a href='$unapprove_url' class='dim:the-comment-list:comment-$comment-&gt;comment_ID:unapproved:e7e7d3:e7e7d3:new=unapproved vim-u' title='&quot; . esc_attr__( 'Unapprove this comment' ) . &quot;'&gt;&quot; . __( 'Unapprove' ) . '&lt;/a&gt;';
</ins><span class="cx">                                         }
</span><span class="cx"> 
</span><span class="cx">                                         if ( 'spam' != $the_comment_status &amp;&amp; 'trash' != $the_comment_status ) {
</span><del>-                                                $actions['spam'] = &quot;&lt;a href='$spam_url' class='delete:the-comment-list:comment-$comment-&gt;comment_ID::spam=1 vim-s vim-destructive' title='&quot; . __( 'Mark this comment as spam' ) . &quot;'&gt;&quot; . /* translators: mark as spam link */ _x( 'Spam', 'verb' ) . '&lt;/a&gt;';
</del><ins>+                                                $actions['spam'] = &quot;&lt;a href='$spam_url' class='delete:the-comment-list:comment-$comment-&gt;comment_ID::spam=1 vim-s vim-destructive' title='&quot; . esc_attr__( 'Mark this comment as spam' ) . &quot;'&gt;&quot; . /* translators: mark as spam link */ _x( 'Spam', 'verb' ) . '&lt;/a&gt;';
</ins><span class="cx">                                         } elseif ( 'spam' == $the_comment_status ) {
</span><span class="cx">                                                 $actions['unspam'] = &quot;&lt;a href='$untrash_url' class='delete:the-comment-list:comment-$comment-&gt;comment_ID:66cc66:unspam=1 vim-z vim-destructive'&gt;&quot; . __( 'Not Spam' ) . '&lt;/a&gt;';
</span><span class="cx">                                         } elseif ( 'trash' == $the_comment_status ) {
</span><span class="lines">@@ -2191,14 +2192,14 @@
</span><span class="cx">                                         if ( 'spam' == $the_comment_status || 'trash' == $the_comment_status || !EMPTY_TRASH_DAYS ) {
</span><span class="cx">                                                 $actions['delete'] = &quot;&lt;a href='$delete_url' class='delete:the-comment-list:comment-$comment-&gt;comment_ID::delete=1 delete vim-d vim-destructive'&gt;&quot; . __('Delete Permanently') . '&lt;/a&gt;';
</span><span class="cx">                                         } else {
</span><del>-                                                $actions['trash'] = &quot;&lt;a href='$trash_url' class='delete:the-comment-list:comment-$comment-&gt;comment_ID::trash=1 delete vim-d vim-destructive' title='&quot; . __( 'Move this comment to the trash' ) . &quot;'&gt;&quot; . _x('Trash', 'verb') . '&lt;/a&gt;';
</del><ins>+                                                $actions['trash'] = &quot;&lt;a href='$trash_url' class='delete:the-comment-list:comment-$comment-&gt;comment_ID::trash=1 delete vim-d vim-destructive' title='&quot; . esc_attr__( 'Move this comment to the trash' ) . &quot;'&gt;&quot; . _x('Trash', 'verb') . '&lt;/a&gt;';
</ins><span class="cx">                                         }
</span><span class="cx"> 
</span><span class="cx">                                         if ( 'trash' != $the_comment_status ) {
</span><del>-                                                $actions['edit'] = &quot;&lt;a href='comment.php?action=editcomment&amp;amp;c={$comment-&gt;comment_ID}' title='&quot; . __('Edit comment') . &quot;'&gt;&quot;. __('Edit') . '&lt;/a&gt;';
-                                                $actions['quickedit'] = '&lt;a onclick=&quot;commentReply.open(\''.$comment-&gt;comment_ID.'\',\''.$post-&gt;ID.'\',\'edit\');return false;&quot; class=&quot;vim-q&quot; title=&quot;'.__('Quick Edit').'&quot; href=&quot;#&quot;&gt;' . __('Quick&amp;nbsp;Edit') . '&lt;/a&gt;';
</del><ins>+                                                $actions['edit'] = &quot;&lt;a href='comment.php?action=editcomment&amp;amp;c={$comment-&gt;comment_ID}' title='&quot; . esc_attr__('Edit comment') . &quot;'&gt;&quot;. __('Edit') . '&lt;/a&gt;';
+                                                $actions['quickedit'] = '&lt;a onclick=&quot;commentReply.open(\''.$comment-&gt;comment_ID.'\',\''.$post-&gt;ID.'\',\'edit\');return false;&quot; class=&quot;vim-q&quot; title=&quot;'.esc_attr__('Quick Edit').'&quot; href=&quot;#&quot;&gt;' . __('Quick&amp;nbsp;Edit') . '&lt;/a&gt;';
</ins><span class="cx">                                                 if ( 'spam' != $the_comment_status )
</span><del>-                                                        $actions['reply'] = '&lt;a onclick=&quot;commentReply.open(\''.$comment-&gt;comment_ID.'\',\''.$post-&gt;ID.'\');return false;&quot; class=&quot;vim-r&quot; title=&quot;'.__('Reply to this comment').'&quot; href=&quot;#&quot;&gt;' . __('Reply') . '&lt;/a&gt;';
</del><ins>+                                                        $actions['reply'] = '&lt;a onclick=&quot;commentReply.open(\''.$comment-&gt;comment_ID.'\',\''.$post-&gt;ID.'\');return false;&quot; class=&quot;vim-r&quot; title=&quot;'.esc_attr__('Reply to this comment').'&quot; href=&quot;#&quot;&gt;' . __('Reply') . '&lt;/a&gt;';
</ins><span class="cx">                                         }
</span><span class="cx"> 
</span><span class="cx">                                         $actions = apply_filters( 'comment_row_actions', array_filter($actions), $comment );
</span><span class="lines">@@ -2266,7 +2267,7 @@
</span><span class="cx">                                         echo &quot;&lt;td $attributes&gt;\n&quot;;
</span><span class="cx">                                         echo '&lt;div class=&quot;response-links&quot;&gt;&lt;span class=&quot;post-com-count-wrapper&quot;&gt;';
</span><span class="cx">                                         echo $post_link . '&lt;br /&gt;';
</span><del>-                                        $pending_phrase = sprintf( __('%s pending'), number_format( $pending_comments ) );
</del><ins>+                                        $pending_phrase = esc_attr(sprintf( __('%s pending'), number_format( $pending_comments ) ));
</ins><span class="cx">                                         if ( $pending_comments )
</span><span class="cx">                                                 echo '&lt;strong&gt;';
</span><span class="cx">                                         comments_number(&quot;&lt;a href='edit-comments.php?p=$post-&gt;ID' title='$pending_phrase' class='post-com-count'&gt;&lt;span class='comment-count'&gt;&quot; . /* translators: comment count link */ _x('0', 'comment count') . '&lt;/span&gt;&lt;/a&gt;', &quot;&lt;a href='edit-comments.php?p=$post-&gt;ID' title='$pending_phrase' class='post-com-count'&gt;&lt;span class='comment-count'&gt;&quot; . /* translators: comment count link */ _x('1', 'comment count') . '&lt;/span&gt;&lt;/a&gt;', &quot;&lt;a href='edit-comments.php?p=$post-&gt;ID' title='$pending_phrase' class='post-com-count'&gt;&lt;span class='comment-count'&gt;&quot; . /* translators: comment count link: % will be substituted by comment count */ _x('%', 'comment count') . '&lt;/span&gt;&lt;/a&gt;');
</span></span></pre>
</div>
</div>

</body>
</html>