Removed unused var.

git-svn-id: http://svn.automattic.com/wordpress/trunk@3696 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2006-04-06 00:44:35 +00:00
parent fa29d02a4b
commit 8aa385cf3f
1 changed files with 0 additions and 1 deletions

View File

@ -475,7 +475,6 @@ function _max_num_pages() {
$numposts = $wpdb->get_var("SELECT COUNT(DISTINCT ID) FROM $fromwhere");
$max_num_pages = ceil($numposts / get_option('posts_per_page'));
} else {
$posts = $wp_query->posts;
preg_match('#FROM\s(.*)\sORDER BY#siU', $wp_query->request, $matches);
$fromwhere = preg_replace('/( AND )?post_date >= (\'|\")(.*?)(\'|\")( AND post_date <= (\'\")(.*?)(\'\"))?/siU', '', $matches[1]);
$num_days = $wpdb->query("SELECT DISTINCT post_date FROM $fromwhere GROUP BY year(post_date), month(post_date), dayofmonth(post_date)");