Merge branch 'MDL-29048-m22' of git://github.com/ankitagarwal/moodle into MOODLE_22_STABLE

This commit is contained in:
Eloy Lafuente (stronk7) 2011-12-20 18:56:01 +01:00
commit 7259dbc551

View file

@ -66,6 +66,11 @@ class restore_glossary_activity_structure_step extends restore_activity_structur
if (!in_array($data->displayformat, $formats)) {
$data->displayformat = 'dictionary';
}
if (!empty($data->mainglossary) and $data->mainglossary == 1 and
$DB->record_exists('glossary', array('mainglossary' => 1, 'course' => $this->get_courseid()))) {
// Only allow one main glossary in the course
$data->mainglossary = 0;
}
// insert the glossary record
$newitemid = $DB->insert_record('glossary', $data);