mirror of
https://github.com/moodle/moodle.git
synced 2025-03-18 22:50:19 +01:00
MDL-13404 - Missing part of previous commit : args to tag_get_related_tags have changed (merge from 1.9)
This commit is contained in:
parent
537aa65c5d
commit
9c5f33ade9
@ -55,7 +55,7 @@ class block_tag_flickr extends block_base {
|
||||
//include related tags in the photo query ?
|
||||
$tags_csv = html_entity_decode(tag_display_name($tag_object));
|
||||
if (!empty($this->config->includerelatedtags)) {
|
||||
$tags_csv .= ',' . tag_get_related_tags_csv(tag_get_related_tags(array('type'=>'tag','id'=>$tag_object->id)), TAG_RETURN_TEXT);
|
||||
$tags_csv .= ',' . tag_get_related_tags_csv(tag_get_related_tags($tag_object->id), TAG_RETURN_TEXT);
|
||||
}
|
||||
$tags_csv = urlencode($tags_csv);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user