MDL-13791 - fix to prevent notice

This commit is contained in:
scyrma
2008-03-05 10:15:52 +00:00
parent 77e95f5bd3
commit ee8bc9d180
+4 -2
View File
@@ -21,10 +21,12 @@ function tag_print_cloud($nr_of_tags=150, $return=false) {
$can_manage_tags = has_capability('moodle/tag:manage', get_context_instance(CONTEXT_SYSTEM));
$tagcloud = get_records_sql('SELECT tg.rawname, tg.id, tg.name, tg.tagtype, COUNT(ti.id) AS count, tg.flag '.
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 '.
'GROUP BY tg.id, tg.rawname, tg.name, tg.flag, tg.tagtype '.
'ORDER BY count DESC, tg.name ASC', 0, $nr_of_tags);
'ORDER BY count DESC, tg.name ASC', 0, $nr_of_tags) ) {
$tagcloud = array();
}
$totaltags = count($tagcloud);
$currenttag = 0;