mirror of
https://github.com/moodle/moodle.git
synced 2025-01-20 23:18:43 +01:00
Now forum->maxbytes is supported in backup/restore.
This commit is contained in:
parent
6ecc3ea8d3
commit
4a4f96bd79
@ -53,6 +53,7 @@
|
||||
fwrite ($bf,full_tag("ASSESSED",4,false,$forum->assessed));
|
||||
fwrite ($bf,full_tag("ASSESSTIMESTART",4,false,$forum->assesstimestart));
|
||||
fwrite ($bf,full_tag("ASSESSTIMEFINISH",4,false,$forum->assesstimefinish));
|
||||
fwrite ($bf,full_tag("MAXBYTES",4,false,$forum->maxbytes));
|
||||
fwrite ($bf,full_tag("SCALE",4,false,$forum->scale));
|
||||
fwrite ($bf,full_tag("FORCESUBSCRIBE",4,false,$forum->forcesubscribe));
|
||||
fwrite ($bf,full_tag("TIMEMODIFIED",4,false,$forum->timemodified));
|
||||
|
@ -56,6 +56,7 @@
|
||||
$forum->assessed = backup_todb($info['MOD']['#']['ASSESSED']['0']['#']);
|
||||
$forum->assesstimestart = backup_todb($info['MOD']['#']['ASSESSTIMESTART']['0']['#']);
|
||||
$forum->assesstimefinish = backup_todb($info['MOD']['#']['ASSESSTIMEFINISH']['0']['#']);
|
||||
$forum->maxbytes = backup_todb($info['MOD']['#']['MAXBYTES']['0']['#']);
|
||||
$forum->scale = backup_todb($info['MOD']['#']['SCALE']['0']['#']);
|
||||
$forum->forcesubscribe = backup_todb($info['MOD']['#']['FORCESUBSCRIBE']['0']['#']);
|
||||
$forum->timemodified = backup_todb($info['MOD']['#']['TIMEMODIFIED']['0']['#']);
|
||||
|
Loading…
x
Reference in New Issue
Block a user