diff --git a/index.php b/index.php
index 5e6bc4e4ae..7b1a6516b2 100644
--- a/index.php
+++ b/index.php
@@ -1,7 +1,7 @@
diff --git a/wp-blog-header.php b/wp-blog-header.php
index d9b1ca414f..5a59f0160b 100644
--- a/wp-blog-header.php
+++ b/wp-blog-header.php
@@ -8,7 +8,7 @@ $curpath = dirname(__FILE__).'/';
if (!file_exists($curpath . '/wp-config.php'))
die("There doesn't seem to be a wp-config.php
file. I need this before we can get started. Need more help? We got it. You can create a wp-config.php
file through a web interface, but this doesn't work for all server setups. The safest way is to manually create the file.");
-require_once ($curpath.'/wp-config.php');
+require($curpath.'/wp-config.php');
$wpvarstoreset = array('m','p','posts','w','c', 'cat','withcomments','s','search','exact', 'sentence','poststart','postend','preview','debug', 'calendar','page','paged','more','tb', 'pb','author','order','orderby', 'year', 'monthnum', 'day', 'name', 'category_name');
@@ -339,7 +339,15 @@ if ($posts) {
}
// Do the same for comment numbers
-
+ $comment_counts = $wpdb->get_results("SELECT ID, COUNT( comment_ID ) AS ccount
+ FROM $tableposts
+ LEFT JOIN $tablecomments ON ( comment_post_ID = ID AND comment_approved = '1')
+ WHERE post_status = 'publish' AND ID IN ($post_id_list)
+ GROUP BY ID");
+
+ foreach ($comment_counts as $comment_count) {
+ $comment_count_cache["$comment_count->ID"] = $comment_count->ccount;
+ }
if (1 == count($posts)) {
if ($p || $name) {
diff --git a/wp-includes/template-functions.php b/wp-includes/template-functions.php
index 4d24e2260c..99d38c3d6e 100644
--- a/wp-includes/template-functions.php
+++ b/wp-includes/template-functions.php
@@ -862,12 +862,10 @@ function the_ID() {
echo $id;
}
-function the_title($before='', $after='', $echo=true) {
+function the_title($before = '', $after = '', $echo = true) {
$title = get_the_title();
- $title = convert_bbcode($title);
- $title = convert_gmcode($title);
$title = convert_smilies($title);
- if ($title) {
+ if (!empty($title)) {
$title = convert_chars($before.$title.$after);
$title = apply_filters('the_title', $title);
if ($echo)
@@ -878,8 +876,6 @@ function the_title($before='', $after='', $echo=true) {
}
function the_title_rss() {
$title = get_the_title();
- $title = convert_bbcode($title);
- $title = convert_gmcode($title);
$title = strip_tags($title);
if (trim($title)) {
echo convert_chars($title, 'unicode');
@@ -896,7 +892,7 @@ function the_title_unicode($before='',$after='') {
}
}
function get_the_title() {
- global $id, $post;
+ global $post;
$output = stripslashes($post->post_title);
if (!empty($post->post_password)) { // if there's a password
$output = 'Protected: ' . $output;
@@ -1446,7 +1442,7 @@ function category_description($category = 0) {
return $category_description;
}
-// out of the b2 loop
+// out of the WordPress loop
function dropdown_cats($optionall = 1, $all = 'All', $sort_column = 'ID', $sort_order = 'asc',
$optiondates = 0, $optioncount = 0, $hide_empty = 1) {
global $cat, $tablecategories, $tableposts, $wpdb;
@@ -1488,32 +1484,41 @@ function dropdown_cats($optionall = 1, $all = 'All', $sort_column = 'ID', $sort_
echo "\n";
}
-// out of the b2 loop
-function list_cats($optionall = 1, $all = 'All', $sort_column = 'ID', $sort_order = 'asc',
- $file = 'blah', $list = true, $optiondates = 0, $optioncount = 0, $hide_empty = 1) {
+// out of the WordPress loop
+function list_cats($optionall = 1, $all = 'All', $sort_column = 'ID', $sort_order = 'asc', $file = '', $list = true, $optiondates = 0, $optioncount = 0, $hide_empty = 1) {
global $tablecategories, $tableposts, $tablepost2cat, $wpdb;
global $pagenow, $siteurl, $blogfilename;
global $querystring_start, $querystring_equal, $querystring_separator;
- if (($file == 'blah') || ($file == '')) {
+ // Optiondates does not currently work
+ if ('' == $file) {
$file = "$siteurl/$blogfilename";
}
$sort_column = 'cat_'.$sort_column;
$query = "
- SELECT cat_ID, cat_name, category_nicename,
- COUNT($tablepost2cat.post_id) AS cat_count,
- DAYOFMONTH(MAX(post_date)) AS lastday, MONTH(MAX(post_date)) AS lastmonth
- FROM $tablecategories LEFT JOIN $tablepost2cat ON (cat_ID = category_id)
- LEFT JOIN $tableposts ON (ID = post_id)
+ SELECT cat_ID, cat_name, category_nicename
+ FROM $tablecategories
WHERE cat_ID > 0
- GROUP BY category_id
";
- if (intval($hide_empty) == 1) {
- $query .= " HAVING cat_count > 0";
- }
- $query .= " ORDER BY $sort_column $sort_order, post_date DESC";
+ $query .= " ORDER BY $sort_column $sort_order";
$categories = $wpdb->get_results($query);
+
+ if (intval($hide_empty) == 1) {
+ $cat_counts = $wpdb->get_results(" SELECT cat_ID,
+ COUNT(wp_post2cat.post_id) AS cat_count
+ FROM wp_categories LEFT JOIN wp_post2cat ON (cat_ID = category_id)
+ LEFT JOIN wp_posts ON (ID = post_id)
+ GROUP BY category_id");
+ foreach ($cat_counts as $cat_count) {
+ $category_posts["$cat_count->cat_ID"] = $cat_count->cat_count;
+ }
+ }
+
+ if (intval($optioncount) == 1) {
+ $link .= ' ('.$category->cat_count.')';
+ }
+
if (!$categories) {
if ($list) {
$before = '