From: scyrma Date: Tue, 26 Feb 2008 06:54:45 +0000 (+0000) Subject: MDL-13669 - Editing now only lists the manually added tags X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=bbb4ba59e5bd192e5d78ab5e341f355425ae367b;p=moodle.git MDL-13669 - Editing now only lists the manually added tags --- diff --git a/tag/edit.php b/tag/edit.php index 8a4bb8d213..7dd236edb4 100644 --- a/tag/edit.php +++ b/tag/edit.php @@ -29,7 +29,7 @@ require_capability('moodle/tag:edit', $systemcontext); // set the relatedtags field of the $tag object that will be passed to the form // need to use html_entity_decode because formslib does it for us later on. -$tag->relatedtags = html_entity_decode(tag_get_related_tags_csv(tag_get_related_tags($tag->id), TAG_RETURN_TEXT)); +$tag->relatedtags = html_entity_decode(tag_get_related_tags_csv(tag_get_related_tags($tag->id, TAG_RELATED_MANUAL), TAG_RETURN_TEXT)); if (can_use_html_editor()) { $options = new object();