From 9c222d2be43e460153cde9b86fc141137ff4ab91 Mon Sep 17 00:00:00 2001 From: Mark Jaquith Date: Mon, 18 Dec 2006 00:13:16 +0000 Subject: [PATCH] Edit Comments paging fix from nbachiyski. fixes #3481 git-svn-id: https://develop.svn.wordpress.org/trunk@4649 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/edit-comments.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/wp-admin/edit-comments.php b/wp-admin/edit-comments.php index e48cdb9f4e..079983937b 100644 --- a/wp-admin/edit-comments.php +++ b/wp-admin/edit-comments.php @@ -90,9 +90,8 @@ if (isset($_GET['s'])) { else $page = 1; $start = $offset = ( $page - 1 ) * 20; - $end = $start + 20; - $comments = $wpdb->get_results( "SELECT * FROM $wpdb->comments WHERE comment_approved = '0' OR comment_approved = '1' ORDER BY comment_date DESC LIMIT $start, $end" ); + $comments = $wpdb->get_results( "SELECT * FROM $wpdb->comments WHERE comment_approved = '0' OR comment_approved = '1' ORDER BY comment_date DESC LIMIT $start, 20" ); $total = $wpdb->get_var( "SELECT COUNT(*) FROM $wpdb->comments WHERE comment_approved = '0' OR comment_approved = '1'" ); } ?>