From: stronk7 Date: Wed, 17 Sep 2003 21:07:20 +0000 (+0000) Subject: Some fields missing in backup. Fixed. X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=7c0a8a1ab62a1f9e0db9ccbb6bbc76fc70defac7;p=moodle.git Some fields missing in backup. Fixed. --- diff --git a/mod/glossary/backuplib.php b/mod/glossary/backuplib.php index 4c29f0a800..d3dac4a6f7 100644 --- a/mod/glossary/backuplib.php +++ b/mod/glossary/backuplib.php @@ -86,6 +86,8 @@ fwrite ($bf,full_tag("DEFINITION",6,false,$glo_ent->definition)); fwrite ($bf,full_tag("FORMAT",6,false,$glo_ent->format)); fwrite ($bf,full_tag("ATTACHMENT",6,false,$glo_ent->attachment)); + fwrite ($bf,full_tag("TIMECREATED",6,false,$glo_ent->timecreated)); + fwrite ($bf,full_tag("TIMEMODIFIED",6,false,$glo_ent->timemodified)); fwrite ($bf,full_tag("TEACHERENTRY",6,false,$glo_ent->teacherentry)); $status =fwrite ($bf,end_tag("ENTRY",5,true));