MDL-14569 - Don't count related tags for the tag cloud formatting and count display (merge from 1.9)

This commit is contained in:
scyrma
2008-04-30 08:51:56 +00:00
parent 446739247e
commit cae8a110e9
+1
View File
@@ -23,6 +23,7 @@ function tag_print_cloud($nr_of_tags=150, $return=false) {
if ( !$tagcloud = get_records_sql('SELECT tg.rawname, tg.id, tg.name, tg.tagtype, COUNT(ti.id) AS count, tg.flag '.
'FROM '. $CFG->prefix .'tag_instance ti INNER JOIN '. $CFG->prefix .'tag tg ON tg.id = ti.tagid '.
'WHERE ti.itemtype != \'tag\' '.
'GROUP BY tg.id, tg.rawname, tg.name, tg.flag, tg.tagtype '.
'ORDER BY count DESC, tg.name ASC', 0, $nr_of_tags) ) {
$tagcloud = array();