<!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>[16108] trunk/wp-admin: Move no_items logic to WP_Comments_Table.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/16108">16108</a></dd>
<dt>Author</dt> <dd>scribu</dd>
<dt>Date</dt> <dd>2010-10-31 01:17:00 +0000 (Sun, 31 Oct 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Move no_items logic to WP_Comments_Table. See <a href="http://trac.wordpress.org/ticket/14579">#14579</a></pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpadmineditcommentsphp">trunk/wp-admin/edit-comments.php</a></li>
<li><a href="#trunkwpadminincludeslisttablecommentsphp">trunk/wp-admin/includes/list-table-comments.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadmineditcommentsphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/edit-comments.php (16107 => 16108)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/edit-comments.php        2010-10-31 00:28:02 UTC (rev 16107)
+++ trunk/wp-admin/edit-comments.php        2010-10-31 01:17:00 UTC (rev 16108)
</span><span class="lines">@@ -204,7 +204,6 @@
</span><span class="cx">         &lt;input type=&quot;text&quot; id=&quot;comment-search-input&quot; name=&quot;s&quot; value=&quot;&lt;?php _admin_search_query(); ?&gt;&quot; /&gt;
</span><span class="cx">         &lt;?php submit_button( __( 'Search Comments' ), 'button', 'submit', false ); ?&gt;
</span><span class="cx"> &lt;/p&gt;
</span><del>-
</del><span class="cx"> &lt;input type=&quot;hidden&quot; name=&quot;mode&quot; value=&quot;&lt;?php echo esc_attr($mode); ?&gt;&quot; /&gt;
</span><span class="cx"> &lt;?php if ( $post_id ) : ?&gt;
</span><span class="cx"> &lt;input type=&quot;hidden&quot; name=&quot;p&quot; value=&quot;&lt;?php echo esc_attr( intval( $post_id ) ); ?&gt;&quot; /&gt;
</span><span class="lines">@@ -220,32 +219,12 @@
</span><span class="cx">         &lt;input type=&quot;hidden&quot; name=&quot;paged&quot; value=&quot;&lt;?php echo esc_attr( absint( $_REQUEST['paged'] ) ); ?&gt;&quot; /&gt;
</span><span class="cx"> &lt;?php } ?&gt;
</span><span class="cx"> 
</span><del>-&lt;br class=&quot;clear&quot; /&gt;
-
-&lt;?php if ( $wp_list_table-&gt;has_items() ) { ?&gt;
-
-&lt;?php $wp_list_table-&gt;display_table(); ?&gt;
-
-&lt;br class=&quot;clear&quot; /&gt;
</del><ins>+&lt;?php $wp_list_table-&gt;display(); ?&gt;
</ins><span class="cx"> &lt;/div&gt;
</span><del>-
</del><span class="cx"> &lt;/form&gt;
</span><span class="cx"> 
</span><span class="cx"> &lt;div id=&quot;ajax-response&quot;&gt;&lt;/div&gt;
</span><span class="cx"> 
</span><del>-&lt;?php } elseif ( 'moderated' == $comment_status ) { ?&gt;
-&lt;p&gt;&lt;?php _e('No comments awaiting moderation&amp;hellip; yet.') ?&gt;&lt;/p&gt;
-&lt;/div&gt;
-&lt;/form&gt;
-
-&lt;?php } else { ?&gt;
-&lt;p&gt;&lt;?php _e('No comments found.') ?&gt;&lt;/p&gt;
-&lt;/div&gt;
-&lt;/form&gt;
-
-&lt;?php } ?&gt;
-&lt;/div&gt;
-
</del><span class="cx"> &lt;?php
</span><span class="cx"> wp_comment_reply('-1', true, 'detail');
</span><span class="cx"> wp_comment_trashnotice();
</span></span></pre></div>
<a id="trunkwpadminincludeslisttablecommentsphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/list-table-comments.php (16107 => 16108)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/list-table-comments.php        2010-10-31 00:28:02 UTC (rev 16107)
+++ trunk/wp-admin/includes/list-table-comments.php        2010-10-31 01:17:00 UTC (rev 16108)
</span><span class="lines">@@ -113,6 +113,15 @@
</span><span class="cx">                 ) );
</span><span class="cx">         }
</span><span class="cx"> 
</span><ins>+        function no_items() {
+                global $comment_status;
+
+                if ( 'moderated' == $comment_status )
+                        _e( 'No comments awaiting moderation&amp;hellip; yet.' );
+                else
+                        _e( 'No comments found.' );
+        }
+
</ins><span class="cx">         function get_views() {
</span><span class="cx">                 global $post_id, $comment_status;
</span><span class="cx"> 
</span><span class="lines">@@ -507,4 +516,4 @@
</span><span class="cx">         }
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-?&gt;
</del><span class="cx">\ No newline at end of file
</span><ins>+?&gt;
</ins></span></pre>
</div>
</div>

</body>
</html>