Skip to content
Snippets Groups Projects
Commit 14b3373c authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #169899 by Island Usurper: taxonomy caching not always working.

parent 32b41f3f
No related branches found
No related tags found
No related merge requests found
......@@ -908,6 +908,7 @@ function taxonomy_term_count_nodes($tid, $type = 0) {
else {
$result = db_query(db_rewrite_sql("SELECT t.tid, COUNT(n.nid) AS c FROM {term_node} t INNER JOIN {node} n ON t.vid = n.vid WHERE n.status = 1 AND n.type = '%s' GROUP BY t.tid"), $type);
}
$count[$type] = array();
while ($term = db_fetch_object($result)) {
$count[$type][$term->tid] = $term->c;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment