From: David Mudrak Date: Mon, 4 Jan 2010 17:49:43 +0000 (+0000) Subject: Do not support tags yet until the API stabilizes X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=91e25af93b701eadffbf8f8a0cd2827f4085fee3;p=moodle.git Do not support tags yet until the API stabilizes The generated form uses deprecated calls at the moment. --- diff --git a/mod/workshop/grading/edit_form.php b/mod/workshop/grading/edit_form.php index 2fe1dcab6f..a74e8e0aad 100644 --- a/mod/workshop/grading/edit_form.php +++ b/mod/workshop/grading/edit_form.php @@ -63,10 +63,11 @@ class workshop_edit_strategy_form extends moodleform { $this->definition_inner($mform); - if (!empty($CFG->usetags)) { - $mform->addElement('header', 'tagsheader', get_string('tags')); - $mform->addElement('tags', 'tags', get_string('tags')); - } + // todo - tags support + //if (!empty($CFG->usetags)) { + // $mform->addElement('header', 'tagsheader', get_string('tags')); + // $mform->addElement('tags', 'tags', get_string('tags')); + //} $buttonarray = array(); $buttonarray[] = &$mform->createElement('submit', 'saveandcontinue', get_string('saveandcontinue', 'workshop'));