From bfc531cd8095f0568c5931ff55c4e38d5c96e6b2 Mon Sep 17 00:00:00 2001 From: markjaquith 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: http://svn.automattic.com/wordpress/trunk@9316 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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');