Merge branch 'w25_MDL-33831_m23_glossestrict' of git://github.com/skodak/moodle

This commit is contained in:
Dan Poltawski 2012-06-20 13:57:26 +08:00
commit b1c43c3f64
2 changed files with 4 additions and 2 deletions

View File

@ -87,7 +87,7 @@ if ($xml = glossary_read_imported_file($result)) {
$xmlglossary = $xml['GLOSSARY']['#']['INFO'][0]['#'];
if ( $xmlglossary['NAME'][0]['#'] ) {
unset($glossary);
$glossary = new stdClass();
$glossary->name = ($xmlglossary['NAME'][0]['#']);
$glossary->course = $course->id;
$glossary->globalglossary = ($xmlglossary['GLOBALGLOSSARY'][0]['#']);
@ -191,7 +191,7 @@ if ($xml = glossary_read_imported_file($result)) {
for($i = 0; $i < $sizeofxmlentries; $i++) {
// Inserting the entries
$xmlentry = $xmlentries[$i];
unset($newentry);
$newentry = new stdClass();
$newentry->concept = trim($xmlentry['#']['CONCEPT'][0]['#']);
$newentry->definition = trusttext_strip($xmlentry['#']['DEFINITION'][0]['#']);
if ( isset($xmlentry['#']['CASESENSITIVE'][0]['#']) ) {

View File

@ -405,9 +405,11 @@ function glossary_get_recent_mod_activity(&$activities, &$index, $timestart, $co
$tmpactivity->name = format_string($cm->name, true);
$tmpactivity->sectionnum = $cm->sectionnum;
$tmpactivity->timestamp = $entry->timemodified;
$tmpactivity->content = new stdClass();
$tmpactivity->content->entryid = $entry->entryid;
$tmpactivity->content->concept = $entry->concept;
$tmpactivity->content->definition = $entry->definition;
$tmpactivity->user = new stdClass();
$tmpactivity->user->id = $entry->userid;
$tmpactivity->user->firstname = $entry->firstname;
$tmpactivity->user->lastname = $entry->lastname;