MDL-19213 testing ifthe wizardpage allows editng the tags

This commit is contained in:
pichetp 2009-05-21 12:19:45 +00:00
parent ad3a4aa67f
commit 3058e79d22

View File

@ -205,7 +205,8 @@ if ($mform->is_cancelled()){
}
$question = $QTYPES[$question->qtype]->save_question($question, $fromform, $COURSE, $wizardnow, true);
if (!empty($CFG->usetags)) {
// a wizardpage from multipe pages questiontype like calculated may not allow editing the question tags
if (!empty($CFG->usetags) && isset($fromform->tags)) {
require_once($CFG->dirroot.'/tag/lib.php');
tag_set('question', $question->id, $fromform->tags);
}