<!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>[17344] trunk: Fix the comments &quot;river.&quot; issue 9.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/17344">17344</a></dd>
<dt>Author</dt> <dd>markjaquith</dd>
<dt>Date</dt> <dd>2011-01-21 21:17:12 +0000 (Fri, 21 Jan 2011)</dd>
</dl>

<h3>Log Message</h3>
<pre>Fix the comments &quot;river.&quot; issue 9. props garyc40. see <a href="http://trac.wordpress.org/ticket/16262">#16262</a></pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpadminincludesclasswpcommentslisttablephp">trunk/wp-admin/includes/class-wp-comments-list-table.php</a></li>
<li><a href="#trunkwpadminincludesclasswplisttablephp">trunk/wp-admin/includes/class-wp-list-table.php</a></li>
<li><a href="#trunkwpadminjseditcommentsdevjs">trunk/wp-admin/js/edit-comments.dev.js</a></li>
<li><a href="#trunkwpadminjseditcommentsjs">trunk/wp-admin/js/edit-comments.js</a></li>
<li><a href="#trunkwpincludesscriptloaderphp">trunk/wp-includes/script-loader.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadminincludesclasswpcommentslisttablephp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/class-wp-comments-list-table.php (17343 => 17344)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/class-wp-comments-list-table.php        2011-01-21 20:28:41 UTC (rev 17343)
+++ trunk/wp-admin/includes/class-wp-comments-list-table.php        2011-01-21 21:17:12 UTC (rev 17344)
</span><span class="lines">@@ -32,6 +32,7 @@
</span><span class="cx">                 parent::WP_List_Table( array(
</span><span class="cx">                         'plural' =&gt; 'comments',
</span><span class="cx">                         'singular' =&gt; 'comment',
</span><ins>+                        'ajax' =&gt; true,
</ins><span class="cx">                 ) );
</span><span class="cx">         }
</span><span class="cx"> 
</span><span class="lines">@@ -267,7 +268,7 @@
</span><span class="cx">         function display() {
</span><span class="cx">                 extract( $this-&gt;_args );
</span><span class="cx"> 
</span><del>-                // wp_nonce_field( &quot;fetch-list-&quot; . get_class( $this ), '_ajax_fetch_list_nonce' );
</del><ins>+                wp_nonce_field( &quot;fetch-list-&quot; . get_class( $this ), '_ajax_fetch_list_nonce' );
</ins><span class="cx"> 
</span><span class="cx">                 $this-&gt;display_tablenav( 'top' );
</span><span class="cx"> 
</span><span class="lines">@@ -538,7 +539,7 @@
</span><span class="cx">         function display( $output_empty = false ) {
</span><span class="cx">                 extract( $this-&gt;_args );
</span><span class="cx"> 
</span><del>-                // wp_nonce_field( &quot;fetch-list-&quot; . get_class( $this ), '_ajax_fetch_list_nonce' );
</del><ins>+                wp_nonce_field( &quot;fetch-list-&quot; . get_class( $this ), '_ajax_fetch_list_nonce' );
</ins><span class="cx"> ?&gt;
</span><span class="cx"> &lt;table class=&quot;&lt;?php echo implode( ' ', $this-&gt;get_table_classes() ); ?&gt;&quot; cellspacing=&quot;0&quot; style=&quot;display:none;&quot;&gt;
</span><span class="cx">         &lt;tbody id=&quot;the-comment-list&quot;&lt;?php if ( $singular ) echo &quot; class='list:$singular'&quot;; ?&gt;&gt;
</span></span></pre></div>
<a id="trunkwpadminincludesclasswplisttablephp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/class-wp-list-table.php (17343 => 17344)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/class-wp-list-table.php        2011-01-21 20:28:41 UTC (rev 17343)
+++ trunk/wp-admin/includes/class-wp-list-table.php        2011-01-21 21:17:12 UTC (rev 17344)
</span><span class="lines">@@ -81,7 +81,7 @@
</span><span class="cx">                 $args = wp_parse_args( $args, array(
</span><span class="cx">                         'plural' =&gt; '',
</span><span class="cx">                         'singular' =&gt; '',
</span><del>-                        'ajax' =&gt; true
</del><ins>+                        'ajax' =&gt; false
</ins><span class="cx">                 ) );
</span><span class="cx"> 
</span><span class="cx">                 $screen = get_current_screen();
</span><span class="lines">@@ -93,10 +93,10 @@
</span><span class="cx"> 
</span><span class="cx">                 $this-&gt;_args = $args;
</span><span class="cx"> 
</span><del>-                // if ( $args['ajax'] ) {
-                //        wp_enqueue_script( 'list-table' );
-                //        add_action( 'admin_footer', array( &amp;$this, '_js_vars' ) );
-                // }
</del><ins>+                if ( $args['ajax'] ) {
+                        // wp_enqueue_script( 'list-table' );
+                        add_action( 'admin_footer', array( &amp;$this, '_js_vars' ) );
+                }
</ins><span class="cx">         }
</span><span class="cx"> 
</span><span class="cx">         /**
</span></span></pre></div>
<a id="trunkwpadminjseditcommentsdevjs"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/js/edit-comments.dev.js (17343 => 17344)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/js/edit-comments.dev.js        2011-01-21 20:28:41 UTC (rev 17343)
+++ trunk/wp-admin/js/edit-comments.dev.js        2011-01-21 21:17:12 UTC (rev 17344)
</span><span class="lines">@@ -211,12 +211,16 @@
</span><span class="cx"> 
</span><span class="cx">                 theList.get(0).wpList.add( theExtraList.children(':eq(0)').remove().clone() );
</span><span class="cx"> 
</span><del>-                // refillTheExtraList();
</del><ins>+                refillTheExtraList();
</ins><span class="cx">         };
</span><span class="cx"> 
</span><del>-        /* var refillTheExtraList = function(ev) {
-                var args = $.query.get(), total_pages = listTable.get_total_pages(), per_page = $('input[name=_per_page]', '#comments-form').val();
-
</del><ins>+        var refillTheExtraList = function(ev) {
+                // var args = $.query.get(), total_pages = listTable.get_total_pages(), per_page = $('input[name=_per_page]', '#comments-form').val(), r;
+                var args = $.query.get(), total_pages = $('.total-pages').text(), per_page = $('input[name=_per_page]', '#comments-form').val(), r;
+                
+                if (! args.paged)
+                        args.paged = 1;
+                
</ins><span class="cx">                 if (args.paged &gt; total_pages) {
</span><span class="cx">                         return;
</span><span class="cx">                 }
</span><span class="lines">@@ -226,17 +230,29 @@
</span><span class="cx">                         args.number = Math.min(8, per_page); // see WP_Comments_List_Table::prepare_items() @ class-wp-comments-list-table.php
</span><span class="cx">                 } else {
</span><span class="cx">                         args.number = 1;
</span><del>-                        args.offset = per_page - 1; // fetch only the last item of the next page
</del><ins>+                        args.offset = Math.min(8, per_page) - 1; // fetch only the next item on the extra list
</ins><span class="cx">                 }
</span><span class="cx"> 
</span><span class="cx">                 args.no_placeholder = true;
</span><span class="cx"> 
</span><span class="cx">                 args.paged ++;
</span><ins>+                
+                args = $.extend(args, {
+                        'action': 'fetch-list',
+                        'list_args': list_args,
+                        '_ajax_fetch_list_nonce': $('#_ajax_fetch_list_nonce').val()
+                });
</ins><span class="cx"> 
</span><del>-                listTable.fetch_list(args, function(response) {
-                        theExtraList.get(0).wpList.add( response.rows );
</del><ins>+                $.ajax({
+                        url: ajaxurl,
+                        global: false,
+                        dataType: 'json',
+                        data: args,
+                        success: function(response) {
+                                theExtraList.get(0).wpList.add( response.rows );
+                        }
</ins><span class="cx">                 });
</span><del>-        }; */
</del><ins>+        };
</ins><span class="cx"> 
</span><span class="cx">         theExtraList = $('#the-extra-comment-list').wpList( { alt: '', delColor: 'none', addColor: 'none' } );
</span><span class="cx">         theList = $('#the-comment-list').wpList( { alt: '', delBefore: delBefore, dimAfter: dimAfter, delAfter: delAfter, addColor: 'none' } )
</span></span></pre></div>
<a id="trunkwpadminjseditcommentsjs"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/js/edit-comments.js (17343 => 17344)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/js/edit-comments.js        2011-01-21 20:28:41 UTC (rev 17343)
+++ trunk/wp-admin/js/edit-comments.js        2011-01-21 21:17:12 UTC (rev 17344)
</span><span class="lines">@@ -1 +1 @@
</span><del>-var theList,theExtraList,toggleWithKeyboard=false;(function($){setCommentsList=function(){var totalInput,perPageInput,pageInput,lastConfidentTime=0,dimAfter,delBefore,updateTotalCount,delAfter;totalInput=$('.tablenav input[name=&quot;_total&quot;]',&quot;#comments-form&quot;);perPageInput=$('.tablenav input[name=&quot;_per_page&quot;]',&quot;#comments-form&quot;);pageInput=$('.tablenav input[name=&quot;_page&quot;]',&quot;#comments-form&quot;);dimAfter=function(r,settings){var c=$(&quot;#&quot;+settings.element);if(c.is(&quot;.unapproved&quot;)){c.find(&quot;div.comment_status&quot;).html(&quot;0&quot;)}else{c.find(&quot;div.comment_status&quot;).html(&quot;1&quot;)}$(&quot;span.pending-count&quot;).each(function(){var a=$(this),n,dif;n=a.html().replace(/[^0-9]+/g,&quot;&quot;);n=parseInt(n,10);if(isNaN(n)){return}dif=$(&quot;#&quot;+settings.element).is(&quot;.&quot;+settings.dimClass)?1:-1;n=n+dif;if(n&lt;0){n=0}a.closest(&quot;#awaiting-mod&quot;)[0==n?&quot;addClass&quot;:&quot;removeClass&quot;](&quot;count-0&quot;);updateCount(a,n);dashboardTotals()})};delBefore=function(settings,list){var cl=$(settings.target).attr(&quot;className&quot;),id,el,n,h,a,author,action=false;settings.data._total=totalInput.val()||0;settings.data._per_page=perPageInput.val()||0;settings.data._page=pageInput.val()||0;settings.data._url=document.location.href;if(cl.indexOf(&quot;:trash=1&quot;)!=-1){action=&quot;trash&quot;}else{if(cl.indexOf(&quot;:spam=1&quot;)!=-1){action=&quot;spam&quot;}}if(action){id=cl.replace(/.*?comment-([0-9]+).*/,&quot;$1&quot;);el=$(&quot;#comment-&quot;+id);note=$(&quot;#&quot;+action+&quot;-undo-holder&quot;).html();el.find(&quot;.check-column :checkbox&quot;).attr(&quot;checked&quot;,&quot;&quot;);if(el.siblings(&quot;#replyrow&quot;).length&amp;&amp;commentReply.cid==id){commentReply.close()}if(el.is(&quot;tr&quot;)){n=el.children(&quot;:visible&quot;).length;author=$(&quot;.author strong&quot;,el).text();h=$('&lt;tr id=&quot;undo-'+id+'&quot; class=&quot;undo un'+action+'&quot; style=&quot;display:none;&quot;&gt;&lt;td colspan=&quot;'+n+'&quot;&gt;'+note+&quot;&lt;/td&gt;&lt;/tr&gt;&quot;)}else{author=$(&quot;.comment-author&quot;,el).text();h=$('&lt;div id=&quot;undo-'+id+'&quot; style=&quot;display:none;&quot; class=&quot;undo un'+action+'&quot;&gt;'+note+&quot;&lt;/div&gt;&quot;)}el.before(h);$(&quot;strong&quot;,&quot;#undo-&quot;+id).text(author+&quot; &quot;);a=$(&quot;.undo a&quot;,&quot;#undo-&quot;+id);a.attr(&quot;href&quot;,&quot;comment.php?action=un&quot;+action+&quot;comment&amp;c=&quot;+id+&quot;&amp;_wpnonce=&quot;+settings.data._ajax_nonce);a.attr(&quot;className&quot;,&quot;delete:the-comment-list:comment-&quot;+id+&quot;::un&quot;+action+&quot;=1 vim-z vim-destructive&quot;);$(&quot;.avatar&quot;,el).clone().prependTo(&quot;#undo-&quot;+id+&quot; .&quot;+action+&quot;-undo-inside&quot;);a.click(function(){list.wpList.del(this);$(&quot;#undo-&quot;+id).css({backgroundColor:&quot;#ceb&quot;}).fadeOut(350,function(){$(this).remove();$(&quot;#comment-&quot;+id).css(&quot;backgroundColor&quot;,&quot;&quot;).fadeIn(300,function(){$(this).show()})});return false})}return settings};updateTotalCount=function(total,time,setConfidentTime){if(time&lt;lastConfidentTime){return}if(setConfidentTime){lastConfidentTime=time}totalInput.val(total.toString());$(&quot;span.total-type-count&quot;).each(function(){updateCount($(this),total)})};function dashboardTotals(n){var dash=$(&quot;#dashboard_right_now&quot;),total,appr,totalN,apprN;n=n||0;if(isNaN(n)||!dash.length){return}total=$(&quot;span.total-count&quot;,dash);appr=$(&quot;span.approved-count&quot;,dash);totalN=getCount(total);totalN=totalN+n;apprN=totalN-getCount($(&quot;span.pending-count&quot;,dash))-getCount($(&quot;span.spam-count&quot;,dash));updateCount(total,totalN);updateCount(appr,apprN)}function getCount(el){var n=parseInt(el.html().replace(/[^0-9]+/g,&quot;&quot;),10);if(isNaN(n)){return 0}return n}function updateCount(el,n){var n1=&quot;&quot;;if(isNaN(n)){return}n=n&lt;1?&quot;0&quot;:n.toString();if(n.length&gt;3){while(n.length&gt;3){n1=thousandsSeparator+n.substr(n.length-3)+n1;n=n.substr(0,n.length-3)}n=n+n1}el.html(n)}delAfter=function(r,settings){var total,pageLinks,N,untrash=$(settings.target).parent().is(&quot;span.untrash&quot;),unspam=$(settings.target).parent().is(&quot;span.unspam&quot;),spam,trash;function getUpdate(s){if($(settings.target).parent().is(&quot;span.&quot;+s)){return 1}else{if($(&quot;#&quot;+settings.element).is(&quot;.&quot;+s)){return -1}}return 0}spam=getUpdate(&quot;spam&quot;);trash=getUpdate(&quot;trash&quot;);if(untrash){trash=-1}if(unspam){spam=-1}$(&quot;span.pending-count&quot;).each(function(){var a=$(this),n=getCount(a),unapproved=$(&quot;#&quot;+settings.element).is(&quot;.unapproved&quot;);if($(settings.target).parent().is(&quot;span.unapprove&quot;)||((untrash||unspam)&amp;&amp;unapproved)){n=n+1}else{if(unapproved){n=n-1}}if(n&lt;0){n=0}a.closest(&quot;#awaiting-mod&quot;)[0==n?&quot;addClass&quot;:&quot;removeClass&quot;](&quot;count-0&quot;);updateCount(a,n);dashboardTotals()});$(&quot;span.spam-count&quot;).each(function(){var a=$(this),n=getCount(a)+spam;updateCount(a,n)});$(&quot;span.trash-count&quot;).each(function(){var a=$(this),n=getCount(a)+trash;updateCount(a,n)});if($(&quot;#dashboard_right_now&quot;).length){N=trash?-1*trash:0;dashboardTotals(N)}else{total=totalInput.val()?parseInt(totalInput.val(),10):0;total=total-spam-trash;if(total&lt;0){total=0}if((&quot;object&quot;==typeof r)&amp;&amp;lastConfidentTime&lt;settings.parsed.responses[0].supplemental.time){pageLinks=settings.parsed.responses[0].supplemental.pageLinks||&quot;&quot;;if($.trim(pageLinks)){$(&quot;.tablenav-pages&quot;).find(&quot;.page-numbers&quot;).remove().end().append($(pageLinks))}else{$(&quot;.tablenav-pages&quot;).find(&quot;.page-numbers&quot;).remove()}updateTotalCount(total,settings.parsed.responses[0].supplemental.time,true)}else{updateTotalCount(total,r,false)}}if(!theExtraList||theExtraList.size()==0||theExtraList.children().size()==0||untrash||unspam){return}theList.get(0).wpList.add(theExtraList.children(&quot;:eq(0)&quot;).remove().clone())};theExtraList=$(&quot;#the-extra-comment-list&quot;).wpList({alt:&quot;&quot;,delColor:&quot;none&quot;,addColor:&quot;none&quot;});theList=$(&quot;#the-comment-list&quot;).wpList({alt:&quot;&quot;,delBefore:delBefore,dimAfter:dimAfter,delAfter:delAfter,addColor:&quot;none&quot;}).bind(&quot;wpListDelEnd&quot;,function(e,s){var id=s.element.replace(/[^0-9]+/g,&quot;&quot;);if(s.target.className.indexOf(&quot;:trash=1&quot;)!=-1||s.target.className.indexOf(&quot;:spam=1&quot;)!=-1){$(&quot;#undo-&quot;+id).fadeIn(300,function(){$(this).show()})}})};commentReply={cid:&quot;&quot;,act:&quot;&quot;,init:function(){var row=$(&quot;#replyrow&quot;);$(&quot;a.cancel&quot;,row).click(function(){return commentReply.revert()});$(&quot;a.save&quot;,row).click(function(){return commentReply.send()});$(&quot;input#author, input#author-email, input#author-url&quot;,row).keypress(function(e){if(e.which==13){commentReply.send();e.preventDefault();return false}});$(&quot;#the-comment-list .column-comment &gt; p&quot;).dblclick(function(){commentReply.toggle($(this).parent())});$(&quot;#doaction, #doaction2, #post-query-submit&quot;).click(function(e){if($(&quot;#the-comment-list #replyrow&quot;).length&gt;0){commentReply.close()}});this.comments_listing=$('#comments-form &gt; input[name=&quot;comment_status&quot;]').val()||&quot;&quot;},addEvents:function(r){r.each(function(){$(this).find(&quot;.column-comment &gt; p&quot;).dblclick(function(){commentReply.toggle($(this).parent())})})},toggle:function(el){if($(el).css(&quot;display&quot;)!=&quot;none&quot;){$(el).find(&quot;a.vim-q&quot;).click()}},revert:function(){if($(&quot;#the-comment-list #replyrow&quot;).length&lt;1){return false}$(&quot;#replyrow&quot;).fadeOut(&quot;fast&quot;,function(){commentReply.close()});return false},close:function(){var c;if(this.cid){c=$(&quot;#comment-&quot;+this.cid);if(this.act==&quot;edit-comment&quot;){c.fadeIn(300,function(){c.show()}).css(&quot;backgroundColor&quot;,&quot;&quot;)}$(&quot;#replyrow&quot;).hide();$(&quot;#com-reply&quot;).append($(&quot;#replyrow&quot;));$(&quot;#replycontent&quot;).val(&quot;&quot;);$(&quot;input&quot;,&quot;#edithead&quot;).val(&quot;&quot;);$(&quot;.error&quot;,&quot;#replysubmit&quot;).html(&quot;&quot;).hide();$(&quot;.waiting&quot;,&quot;#replysubmit&quot;).hide();if($.browser.msie){$(&quot;#replycontainer, #replycontent&quot;).css(&quot;height&quot;,&quot;120px&quot;)}else{$(&quot;#replycontainer&quot;).resizable(&quot;destroy&quot;).css(&quot;height&quot;,&quot;120px&quot;)}this.cid=&quot;&quot;}},open:function(id,p,a){var t=this,editRow,rowData,act,h,c=$(&quot;#comment-&quot;+id);t.close();t.cid=id;editRow=$(&quot;#replyrow&quot;);rowData=$(&quot;#inline-&quot;+id);act=t.act=(a==&quot;edit&quot;)?&quot;edit-comment&quot;:&quot;replyto-comment&quot;;$(&quot;#action&quot;,editRow).val(act);$(&quot;#comment_post_ID&quot;,editRow).val(p);$(&quot;#comment_ID&quot;,editRow).val(id);if(a==&quot;edit&quot;){$(&quot;#author&quot;,editRow).val($(&quot;div.author&quot;,rowData).text());$(&quot;#author-email&quot;,editRow).val($(&quot;div.author-email&quot;,rowData).text());$(&quot;#author-url&quot;,editRow).val($(&quot;div.author-url&quot;,rowData).text());$(&quot;#status&quot;,editRow).val($(&quot;div.comment_status&quot;,rowData).text());$(&quot;#replycontent&quot;,editRow).val($(&quot;textarea.comment&quot;,rowData).val());$(&quot;#edithead, #savebtn&quot;,editRow).show();$(&quot;#replyhead, #replybtn&quot;,editRow).hide();h=c.height();if(h&gt;220){if($.browser.msie){$(&quot;#replycontainer, #replycontent&quot;,editRow).height(h-105)}else{$(&quot;#replycontainer&quot;,editRow).height(h-105)}}c.after(editRow).fadeOut(&quot;fast&quot;,function(){$(&quot;#replyrow&quot;).fadeIn(300,function(){$(this).show()})})}else{$(&quot;#edithead, #savebtn&quot;,editRow).hide();$(&quot;#replyhead, #replybtn&quot;,editRow).show();c.after(editRow);$(&quot;#replyrow&quot;).fadeIn(300,function(){$(this).show()})}if(!$.browser.msie){$(&quot;#replycontainer&quot;).resizable({handles:&quot;s&quot;,axis:&quot;y&quot;,minHeight:80,stop:function(){$(&quot;#replycontainer&quot;).width(&quot;auto&quot;)}})}setTimeout(function(){var rtop,rbottom,scrollTop,vp,scrollBottom;rtop=$(&quot;#replyrow&quot;).offset().top;rbottom=rtop+$(&quot;#replyrow&quot;).height();scrollTop=window.pageYOffset||document.documentElement.scrollTop;vp=document.documentElement.clientHeight||self.innerHeight||0;scrollBottom=scrollTop+vp;if(scrollBottom-20&lt;rbottom){window.scroll(0,rbottom-vp+35)}else{if(rtop-20&lt;scrollTop){window.scroll(0,rtop-35)}}$(&quot;#replycontent&quot;).focus().keyup(function(e){if(e.which==27){commentReply.revert()}})},600);return false},send:function(){var post={};$(&quot;#replysubmit .error&quot;).hide();$(&quot;#replysubmit .waiting&quot;).show();$(&quot;#replyrow input&quot;).each(function(){post[$(this).attr(&quot;name&quot;)]=$(this).val()});post.content=$(&quot;#replycontent&quot;).val();post.id=post.comment_post_ID;post.comments_listing=this.comments_listing;post.p=$(&quot;[name=p]&quot;).val();$.ajax({type:&quot;POST&quot;,url:ajaxurl,data:post,success:function(x){commentReply.show(x)},error:function(r){commentReply.error(r)}});return false},show:function(xml){var r,c,id,bg;if(typeof(xml)==&quot;string&quot;){this.error({responseText:xml});return false}r=wpAjax.parseAjaxResponse(xml);if(r.errors){this.error({responseText:wpAjax.broken});return false}r=r.responses[0];c=r.data;id=&quot;#comment-&quot;+r.id;if(&quot;edit-comment&quot;==this.act){$(id).remove()}$(c).hide();$(&quot;#replyrow&quot;).after(c);this.revert();this.addEvents($(id));bg=$(id).hasClass(&quot;unapproved&quot;)?&quot;#ffffe0&quot;:&quot;#fff&quot;;$(id).animate({backgroundColor:&quot;#CCEEBB&quot;},600).animate({backgroundColor:bg},600)},error:function(r){var er=r.statusText;$(&quot;#replysubmit .waiting&quot;).hide();if(r.responseText){er=r.responseText.replace(/&lt;.[^&lt;&gt;]*?&gt;/g,&quot;&quot;)}if(er){$(&quot;#replysubmit .error&quot;).html(er).show()}}};$(document).ready(function(){var make_hotkeys_redirect,edit_comment,toggle_all,make_bulk;setCommentsList();commentReply.init();$(document).delegate(&quot;span.delete a.delete&quot;,&quot;click&quot;,function(){return false});if(typeof QTags!=&quot;undefined&quot;){ed_reply=new QTags(&quot;ed_reply&quot;,&quot;replycontent&quot;,&quot;replycontainer&quot;,&quot;more&quot;)}if(typeof $.table_hotkeys!=&quot;undefined&quot;){make_hotkeys_redirect=function(which){return function(){var first_last,l;first_last=&quot;next&quot;==which?&quot;first&quot;:&quot;last&quot;;l=$(&quot;.tablenav-pages .&quot;+which+&quot;-page:not(.disabled)&quot;);if(l.length){window.location=l[0].href.replace(/\&amp;hotkeys_highlight_(first|last)=1/g,&quot;&quot;)+&quot;&amp;hotkeys_highlight_&quot;+first_last+&quot;=1&quot;}}};edit_comment=function(event,current_row){window.location=$(&quot;span.edit a&quot;,current_row).attr(&quot;href&quot;)};toggle_all=function(){toggleWithKeyboard=true;$(&quot;input:checkbox&quot;,&quot;#cb&quot;).click().attr(&quot;checked&quot;,&quot;&quot;);toggleWithKeyboard=false};make_bulk=function(value){return function(){var scope=$('select[name=&quot;action&quot;]');$(&quot;option[value=&quot;+value+&quot;]&quot;,scope).attr(&quot;selected&quot;,&quot;selected&quot;);$(&quot;#doaction&quot;).click()}};$.table_hotkeys($(&quot;table.widefat&quot;),[&quot;a&quot;,&quot;u&quot;,&quot;s&quot;,&quot;d&quot;,&quot;r&quot;,&quot;q&quot;,&quot;z&quot;,[&quot;e&quot;,edit_comment],[&quot;shift+x&quot;,toggle_all],[&quot;shift+a&quot;,make_bulk(&quot;approve&quot;)],[&quot;shift+s&quot;,make_bulk(&quot;spam&quot;)],[&quot;shift+d&quot;,make_bulk(&quot;delete&quot;)],[&quot;shift+t&quot;,make_bulk(&quot;trash&quot;)],[&quot;shift+z&quot;,make_bulk(&quot;untrash&quot;)],[&quot;shift+u&quot;,make_bulk(&quot;unapprove&quot;)]],{highlight_first:adminCommentsL10n.hotkeys_highlight_first,highlight_last:adminCommentsL10n.hotkeys_highlight_last,prev_page_link_cb:make_hotkeys_redirect(&quot;prev&quot;),next_page_link_cb:make_hotkeys_redirect(&quot;next&quot;)})}})})(jQuery);
</del><span class="cx">\ No newline at end of file
</span><ins>+var theList,theExtraList,toggleWithKeyboard=false;(function($){setCommentsList=function(){var totalInput,perPageInput,pageInput,lastConfidentTime=0,dimAfter,delBefore,updateTotalCount,delAfter;totalInput=$('.tablenav input[name=&quot;_total&quot;]',&quot;#comments-form&quot;);perPageInput=$('.tablenav input[name=&quot;_per_page&quot;]',&quot;#comments-form&quot;);pageInput=$('.tablenav input[name=&quot;_page&quot;]',&quot;#comments-form&quot;);dimAfter=function(r,settings){var c=$(&quot;#&quot;+settings.element);if(c.is(&quot;.unapproved&quot;)){c.find(&quot;div.comment_status&quot;).html(&quot;0&quot;)}else{c.find(&quot;div.comment_status&quot;).html(&quot;1&quot;)}$(&quot;span.pending-count&quot;).each(function(){var a=$(this),n,dif;n=a.html().replace(/[^0-9]+/g,&quot;&quot;);n=parseInt(n,10);if(isNaN(n)){return}dif=$(&quot;#&quot;+settings.element).is(&quot;.&quot;+settings.dimClass)?1:-1;n=n+dif;if(n&lt;0){n=0}a.closest(&quot;#awaiting-mod&quot;)[0==n?&quot;addClass&quot;:&quot;removeClass&quot;](&quot;count-0&quot;);updateCount(a,n);dashboardTotals()})};delBefore=function(settings,list){var cl=$(settings.target).attr(&quot;className&quot;),id,el,n,h,a,author,action=false;settings.data._total=totalInput.val()||0;settings.data._per_page=perPageInput.val()||0;settings.data._page=pageInput.val()||0;settings.data._url=document.location.href;if(cl.indexOf(&quot;:trash=1&quot;)!=-1){action=&quot;trash&quot;}else{if(cl.indexOf(&quot;:spam=1&quot;)!=-1){action=&quot;spam&quot;}}if(action){id=cl.replace(/.*?comment-([0-9]+).*/,&quot;$1&quot;);el=$(&quot;#comment-&quot;+id);note=$(&quot;#&quot;+action+&quot;-undo-holder&quot;).html();el.find(&quot;.check-column :checkbox&quot;).attr(&quot;checked&quot;,&quot;&quot;);if(el.siblings(&quot;#replyrow&quot;).length&amp;&amp;commentReply.cid==id){commentReply.close()}if(el.is(&quot;tr&quot;)){n=el.children(&quot;:visible&quot;).length;author=$(&quot;.author strong&quot;,el).text();h=$('&lt;tr id=&quot;undo-'+id+'&quot; class=&quot;undo un'+action+'&quot; style=&quot;display:none;&quot;&gt;&lt;td colspan=&quot;'+n+'&quot;&gt;'+note+&quot;&lt;/td&gt;&lt;/tr&gt;&quot;)}else{author=$(&quot;.comment-author&quot;,el).text();h=$('&lt;div id=&quot;undo-'+id+'&quot; style=&quot;display:none;&quot; class=&quot;undo un'+action+'&quot;&gt;'+note+&quot;&lt;/div&gt;&quot;)}el.before(h);$(&quot;strong&quot;,&quot;#undo-&quot;+id).text(author+&quot; &quot;);a=$(&quot;.undo a&quot;,&quot;#undo-&quot;+id);a.attr(&quot;href&quot;,&quot;comment.php?action=un&quot;+action+&quot;comment&amp;c=&quot;+id+&quot;&amp;_wpnonce=&quot;+settings.data._ajax_nonce);a.attr(&quot;className&quot;,&quot;delete:the-comment-list:comment-&quot;+id+&quot;::un&quot;+action+&quot;=1 vim-z vim-destructive&quot;);$(&quot;.avatar&quot;,el).clone().prependTo(&quot;#undo-&quot;+id+&quot; .&quot;+action+&quot;-undo-inside&quot;);a.click(function(){list.wpList.del(this);$(&quot;#undo-&quot;+id).css({backgroundColor:&quot;#ceb&quot;}).fadeOut(350,function(){$(this).remove();$(&quot;#comment-&quot;+id).css(&quot;backgroundColor&quot;,&quot;&quot;).fadeIn(300,function(){$(this).show()})});return false})}return settings};updateTotalCount=function(total,time,setConfidentTime){if(time&lt;lastConfidentTime){return}if(setConfidentTime){lastConfidentTime=time}totalInput.val(total.toString());$(&quot;span.total-type-count&quot;).each(function(){updateCount($(this),total)})};function dashboardTotals(n){var dash=$(&quot;#dashboard_right_now&quot;),total,appr,totalN,apprN;n=n||0;if(isNaN(n)||!dash.length){return}total=$(&quot;span.total-count&quot;,dash);appr=$(&quot;span.approved-count&quot;,dash);totalN=getCount(total);totalN=totalN+n;apprN=totalN-getCount($(&quot;span.pending-count&quot;,dash))-getCount($(&quot;span.spam-count&quot;,dash));updateCount(total,totalN);updateCount(appr,apprN)}function getCount(el){var n=parseInt(el.html().replace(/[^0-9]+/g,&quot;&quot;),10);if(isNaN(n)){return 0}return n}function updateCount(el,n){var n1=&quot;&quot;;if(isNaN(n)){return}n=n&lt;1?&quot;0&quot;:n.toString();if(n.length&gt;3){while(n.length&gt;3){n1=thousandsSeparator+n.substr(n.length-3)+n1;n=n.substr(0,n.length-3)}n=n+n1}el.html(n)}delAfter=function(r,settings){var total,pageLinks,N,untrash=$(settings.target).parent().is(&quot;span.untrash&quot;),unspam=$(settings.target).parent().is(&quot;span.unspam&quot;),spam,trash;function getUpdate(s){if($(settings.target).parent().is(&quot;span.&quot;+s)){return 1}else{if($(&quot;#&quot;+settings.element).is(&quot;.&quot;+s)){return -1}}return 0}spam=getUpdate(&quot;spam&quot;);trash=getUpdate(&quot;trash&quot;);if(untrash){trash=-1}if(unspam){spam=-1}$(&quot;span.pending-count&quot;).each(function(){var a=$(this),n=getCount(a),unapproved=$(&quot;#&quot;+settings.element).is(&quot;.unapproved&quot;);if($(settings.target).parent().is(&quot;span.unapprove&quot;)||((untrash||unspam)&amp;&amp;unapproved)){n=n+1}else{if(unapproved){n=n-1}}if(n&lt;0){n=0}a.closest(&quot;#awaiting-mod&quot;)[0==n?&quot;addClass&quot;:&quot;removeClass&quot;](&quot;count-0&quot;);updateCount(a,n);dashboardTotals()});$(&quot;span.spam-count&quot;).each(function(){var a=$(this),n=getCount(a)+spam;updateCount(a,n)});$(&quot;span.trash-count&quot;).each(function(){var a=$(this),n=getCount(a)+trash;updateCount(a,n)});if($(&quot;#dashboard_right_now&quot;).length){N=trash?-1*trash:0;dashboardTotals(N)}else{total=totalInput.val()?parseInt(totalInput.val(),10):0;total=total-spam-trash;if(total&lt;0){total=0}if((&quot;object&quot;==typeof r)&amp;&amp;lastConfidentTime&lt;settings.parsed.responses[0].supplemental.time){pageLinks=settings.parsed.responses[0].supplemental.pageLinks||&quot;&quot;;if($.trim(pageLinks)){$(&quot;.tablenav-pages&quot;).find(&quot;.page-numbers&quot;).remove().end().append($(pageLinks))}else{$(&quot;.tablenav-pages&quot;).find(&quot;.page-numbers&quot;).remove()}updateTotalCount(total,settings.parsed.responses[0].supplemental.time,true)}else{updateTotalCount(total,r,false)}}if(!theExtraList||theExtraList.size()==0||theExtraList.children().size()==0||untrash||unspam){return}theList.get(0).wpList.add(theExtraList.children(&quot;:eq(0)&quot;).remove().clone());refillTheExtraList()};var refillTheExtraList=function(ev){var args=$.query.get(),total_pages=$(&quot;.total-pages&quot;).text(),per_page=$(&quot;input[name=_per_page]&quot;,&quot;#comments-form&quot;).val(),r;if(!args.paged){args.paged=1}if(args.paged&gt;total_pages){return}if(ev){theExtraList.empty();args.number=Math.min(8,per_page)}else{args.number=1;args.offset=Math.min(8,per_page)-1}args.no_placeholder=true;args.paged++;args=$.extend(args,{action:&quot;fetch-list&quot;,list_args:list_args,_ajax_fetch_list_nonce:$(&quot;#_ajax_fetch_list_nonce&quot;).val()});$.ajax({url:ajaxurl,global:false,dataType:&quot;json&quot;,data:args,success:function(response){theExtraList.get(0).wpList.add(response.rows)}})};theExtraList=$(&quot;#the-extra-comment-list&quot;).wpList({alt:&quot;&quot;,delColor:&quot;none&quot;,addColor:&quot;none&quot;});theList=$(&quot;#the-comment-list&quot;).wpList({alt:&quot;&quot;,delBefore:delBefore,dimAfter:dimAfter,delAfter:delAfter,addColor:&quot;none&quot;}).bind(&quot;wpListDelEnd&quot;,function(e,s){var id=s.element.replace(/[^0-9]+/g,&quot;&quot;);if(s.target.className.indexOf(&quot;:trash=1&quot;)!=-1||s.target.className.indexOf(&quot;:spam=1&quot;)!=-1){$(&quot;#undo-&quot;+id).fadeIn(300,function(){$(this).show()})}})};commentReply={cid:&quot;&quot;,act:&quot;&quot;,init:function(){var row=$(&quot;#replyrow&quot;);$(&quot;a.cancel&quot;,row).click(function(){return commentReply.revert()});$(&quot;a.save&quot;,row).click(function(){return commentReply.send()});$(&quot;input#author, input#author-email, input#author-url&quot;,row).keypress(function(e){if(e.which==13){commentReply.send();e.preventDefault();return false}});$(&quot;#the-comment-list .column-comment &gt; p&quot;).dblclick(function(){commentReply.toggle($(this).parent())});$(&quot;#doaction, #doaction2, #post-query-submit&quot;).click(function(e){if($(&quot;#the-comment-list #replyrow&quot;).length&gt;0){commentReply.close()}});this.comments_listing=$('#comments-form &gt; input[name=&quot;comment_status&quot;]').val()||&quot;&quot;},addEvents:function(r){r.each(function(){$(this).find(&quot;.column-comment &gt; p&quot;).dblclick(function(){commentReply.toggle($(this).parent())})})},toggle:function(el){if($(el).css(&quot;display&quot;)!=&quot;none&quot;){$(el).find(&quot;a.vim-q&quot;).click()}},revert:function(){if($(&quot;#the-comment-list #replyrow&quot;).length&lt;1){return false}$(&quot;#replyrow&quot;).fadeOut(&quot;fast&quot;,function(){commentReply.close()});return false},close:function(){var c;if(this.cid){c=$(&quot;#comment-&quot;+this.cid);if(this.act==&quot;edit-comment&quot;){c.fadeIn(300,function(){c.show()}).css(&quot;backgroundColor&quot;,&quot;&quot;)}$(&quot;#replyrow&quot;).hide();$(&quot;#com-reply&quot;).append($(&quot;#replyrow&quot;));$(&quot;#replycontent&quot;).val(&quot;&quot;);$(&quot;input&quot;,&quot;#edithead&quot;).val(&quot;&quot;);$(&quot;.error&quot;,&quot;#replysubmit&quot;).html(&quot;&quot;).hide();$(&quot;.waiting&quot;,&quot;#replysubmit&quot;).hide();if($.browser.msie){$(&quot;#replycontainer, #replycontent&quot;).css(&quot;height&quot;,&quot;120px&quot;)}else{$(&quot;#replycontainer&quot;).resizable(&quot;destroy&quot;).css(&quot;height&quot;,&quot;120px&quot;)}this.cid=&quot;&quot;}},open:function(id,p,a){var t=this,editRow,rowData,act,h,c=$(&quot;#comment-&quot;+id);t.close();t.cid=id;editRow=$(&quot;#replyrow&quot;);rowData=$(&quot;#inline-&quot;+id);act=t.act=(a==&quot;edit&quot;)?&quot;edit-comment&quot;:&quot;replyto-comment&quot;;$(&quot;#action&quot;,editRow).val(act);$(&quot;#comment_post_ID&quot;,editRow).val(p);$(&quot;#comment_ID&quot;,editRow).val(id);if(a==&quot;edit&quot;){$(&quot;#author&quot;,editRow).val($(&quot;div.author&quot;,rowData).text());$(&quot;#author-email&quot;,editRow).val($(&quot;div.author-email&quot;,rowData).text());$(&quot;#author-url&quot;,editRow).val($(&quot;div.author-url&quot;,rowData).text());$(&quot;#status&quot;,editRow).val($(&quot;div.comment_status&quot;,rowData).text());$(&quot;#replycontent&quot;,editRow).val($(&quot;textarea.comment&quot;,rowData).val());$(&quot;#edithead, #savebtn&quot;,editRow).show();$(&quot;#replyhead, #replybtn&quot;,editRow).hide();h=c.height();if(h&gt;220){if($.browser.msie){$(&quot;#replycontainer, #replycontent&quot;,editRow).height(h-105)}else{$(&quot;#replycontainer&quot;,editRow).height(h-105)}}c.after(editRow).fadeOut(&quot;fast&quot;,function(){$(&quot;#replyrow&quot;).fadeIn(300,function(){$(this).show()})})}else{$(&quot;#edithead, #savebtn&quot;,editRow).hide();$(&quot;#replyhead, #replybtn&quot;,editRow).show();c.after(editRow);$(&quot;#replyrow&quot;).fadeIn(300,function(){$(this).show()})}if(!$.browser.msie){$(&quot;#replycontainer&quot;).resizable({handles:&quot;s&quot;,axis:&quot;y&quot;,minHeight:80,stop:function(){$(&quot;#replycontainer&quot;).width(&quot;auto&quot;)}})}setTimeout(function(){var rtop,rbottom,scrollTop,vp,scrollBottom;rtop=$(&quot;#replyrow&quot;).offset().top;rbottom=rtop+$(&quot;#replyrow&quot;).height();scrollTop=window.pageYOffset||document.documentElement.scrollTop;vp=document.documentElement.clientHeight||self.innerHeight||0;scrollBottom=scrollTop+vp;if(scrollBottom-20&lt;rbottom){window.scroll(0,rbottom-vp+35)}else{if(rtop-20&lt;scrollTop){window.scroll(0,rtop-35)}}$(&quot;#replycontent&quot;).focus().keyup(function(e){if(e.which==27){commentReply.revert()}})},600);return false},send:function(){var post={};$(&quot;#replysubmit .error&quot;).hide();$(&quot;#replysubmit .waiting&quot;).show();$(&quot;#replyrow input&quot;).each(function(){post[$(this).attr(&quot;name&quot;)]=$(this).val()});post.content=$(&quot;#replycontent&quot;).val();post.id=post.comment_post_ID;post.comments_listing=this.comments_listing;post.p=$(&quot;[name=p]&quot;).val();$.ajax({type:&quot;POST&quot;,url:ajaxurl,data:post,success:function(x){commentReply.show(x)},error:function(r){commentReply.error(r)}});return false},show:function(xml){var r,c,id,bg;if(typeof(xml)==&quot;string&quot;){this.error({responseText:xml});return false}r=wpAjax.parseAjaxResponse(xml);if(r.errors){this.error({responseText:wpAjax.broken});return false}r=r.responses[0];c=r.data;id=&quot;#comment-&quot;+r.id;if(&quot;edit-comment&quot;==this.act){$(id).remove()}$(c).hide();$(&quot;#replyrow&quot;).after(c);this.revert();this.addEvents($(id));bg=$(id).hasClass(&quot;unapproved&quot;)?&quot;#ffffe0&quot;:&quot;#fff&quot;;$(id).animate({backgroundColor:&quot;#CCEEBB&quot;},600).animate({backgroundColor:bg},600)},error:function(r){var er=r.statusText;$(&quot;#replysubmit .waiting&quot;).hide();if(r.responseText){er=r.responseText.replace(/&lt;.[^&lt;&gt;]*?&gt;/g,&quot;&quot;)}if(er){$(&quot;#replysubmit .error&quot;).html(er).show()}}};$(document).ready(function(){var make_hotkeys_redirect,edit_comment,toggle_all,make_bulk;setCommentsList();commentReply.init();$(document).delegate(&quot;span.delete a.delete&quot;,&quot;click&quot;,function(){return false});if(typeof QTags!=&quot;undefined&quot;){ed_reply=new QTags(&quot;ed_reply&quot;,&quot;replycontent&quot;,&quot;replycontainer&quot;,&quot;more&quot;)}if(typeof $.table_hotkeys!=&quot;undefined&quot;){make_hotkeys_redirect=function(which){return function(){var first_last,l;first_last=&quot;next&quot;==which?&quot;first&quot;:&quot;last&quot;;l=$(&quot;.tablenav-pages .&quot;+which+&quot;-page:not(.disabled)&quot;);if(l.length){window.location=l[0].href.replace(/\&amp;hotkeys_highlight_(first|last)=1/g,&quot;&quot;)+&quot;&amp;hotkeys_highlight_&quot;+first_last+&quot;=1&quot;}}};edit_comment=function(event,current_row){window.location=$(&quot;span.edit a&quot;,current_row).attr(&quot;href&quot;)};toggle_all=function(){toggleWithKeyboard=true;$(&quot;input:checkbox&quot;,&quot;#cb&quot;).click().attr(&quot;checked&quot;,&quot;&quot;);toggleWithKeyboard=false};make_bulk=function(value){return function(){var scope=$('select[name=&quot;action&quot;]');$(&quot;option[value=&quot;+value+&quot;]&quot;,scope).attr(&quot;selected&quot;,&quot;selected&quot;);$(&quot;#doaction&quot;).click()}};$.table_hotkeys($(&quot;table.widefat&quot;),[&quot;a&quot;,&quot;u&quot;,&quot;s&quot;,&quot;d&quot;,&quot;r&quot;,&quot;q&quot;,&quot;z&quot;,[&quot;e&quot;,edit_comment],[&quot;shift+x&quot;,toggle_all],[&quot;shift+a&quot;,make_bulk(&quot;approve&quot;)],[&quot;shift+s&quot;,make_bulk(&quot;spam&quot;)],[&quot;shift+d&quot;,make_bulk(&quot;delete&quot;)],[&quot;shift+t&quot;,make_bulk(&quot;trash&quot;)],[&quot;shift+z&quot;,make_bulk(&quot;untrash&quot;)],[&quot;shift+u&quot;,make_bulk(&quot;unapprove&quot;)]],{highlight_first:adminCommentsL10n.hotkeys_highlight_first,highlight_last:adminCommentsL10n.hotkeys_highlight_last,prev_page_link_cb:make_hotkeys_redirect(&quot;prev&quot;),next_page_link_cb:make_hotkeys_redirect(&quot;next&quot;)})}})})(jQuery);
</ins><span class="cx">\ No newline at end of file
</span></span></pre></div>
<a id="trunkwpincludesscriptloaderphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/script-loader.php (17343 => 17344)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/script-loader.php        2011-01-21 20:28:41 UTC (rev 17343)
+++ trunk/wp-includes/script-loader.php        2011-01-21 21:17:12 UTC (rev 17344)
</span><span class="lines">@@ -299,7 +299,7 @@
</span><span class="cx">                 $scripts-&gt;add( 'admin-custom-fields', &quot;/wp-admin/js/custom-fields$suffix.js&quot;, array('wp-lists'), '20090106' );
</span><span class="cx">                 $scripts-&gt;add_data( 'admin-custom-fields', 'group', 1 );
</span><span class="cx"> 
</span><del>-                $scripts-&gt;add( 'admin-comments', &quot;/wp-admin/js/edit-comments$suffix.js&quot;, array('wp-lists', 'jquery-ui-resizable', 'quicktags'), '20110121' );
</del><ins>+                $scripts-&gt;add( 'admin-comments', &quot;/wp-admin/js/edit-comments$suffix.js&quot;, array('wp-lists', 'jquery-ui-resizable', 'quicktags', 'jquery-query'), '20110121b' );
</ins><span class="cx">                 $scripts-&gt;add_data( 'admin-comments', 'group', 1 );
</span><span class="cx">                 $scripts-&gt;localize( 'admin-comments', 'adminCommentsL10n', array(
</span><span class="cx">                         'hotkeys_highlight_first' =&gt; isset($_GET['hotkeys_highlight_first']),
</span></span></pre>
</div>
</div>

</body>
</html>