From 12f802806544d09dd652e6eb95f9e9cdfa260c7e Mon Sep 17 00:00:00 2001 From: Mark Jaquith Date: Fri, 24 Oct 2008 07:22:50 +0000 Subject: [PATCH] Increase the default number of comments per page to 50. 10 is far too few. git-svn-id: https://develop.svn.wordpress.org/trunk@9316 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/schema.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/includes/schema.php b/wp-admin/includes/schema.php index bac94107c7..fcedde739a 100644 --- a/wp-admin/includes/schema.php +++ b/wp-admin/includes/schema.php @@ -291,7 +291,7 @@ function populate_options() { add_option('thread_comments', 0); add_option('thread_comments_depth', 5); add_option('page_comments', 1); - add_option('comments_per_page', 10); + add_option('comments_per_page', 50); add_option('default_comments_page', 'newest'); add_option('comment_order', 'asc');