From b9aa56891245c6d05eb3675b92fcd9c2b9ddc726 Mon Sep 17 00:00:00 2001 From: stronk7 Date: Sun, 5 Sep 2004 09:47:05 +0000 Subject: [PATCH] Added new fields to backup/restore --- mod/exercise/backuplib.php | 2 ++ mod/exercise/restorelib.php | 2 ++ 2 files changed, 4 insertions(+) diff --git a/mod/exercise/backuplib.php b/mod/exercise/backuplib.php index 3a97ffbca6..041ec50e14 100644 --- a/mod/exercise/backuplib.php +++ b/mod/exercise/backuplib.php @@ -65,6 +65,8 @@ fwrite ($bf,full_tag("GRADE",4,false,$exercise->grade)); fwrite ($bf,full_tag("GRADINGGRADE",4,false,$exercise->gradinggrade)); fwrite ($bf,full_tag("SHOWLEAGUETABLE",4,false,$exercise->showleaguetable)); + fwrite ($bf,full_tag("USEPASSWORD",4,false,$exercise->usepassword)); + fwrite ($bf,full_tag("PASSWORD",4,false,$exercise->password)); //Now we backup exercise elements $status = backup_exercise_elements($bf,$preferences,$exercise->id); //Now we backup any teacher submissions (these are an integral part of the exercise) diff --git a/mod/exercise/restorelib.php b/mod/exercise/restorelib.php index d6e45c49d8..e791d8773c 100644 --- a/mod/exercise/restorelib.php +++ b/mod/exercise/restorelib.php @@ -68,6 +68,8 @@ $exercise->grade = backup_todb($info['MOD']['#']['GRADE']['0']['#']); $exercise->gradinggrade = backup_todb($info['MOD']['#']['GRADINGGRADE']['0']['#']); $exercise->showleaguetable = backup_todb($info['MOD']['#']['SHOWLEAGUETABLE']['0']['#']); + $exercise->usepassword = backup_todb($info['MOD']['#']['USEPASSWORD']['0']['#']); + $exercise->password = backup_todb($info['MOD']['#']['PASSWORD']['0']['#']); //The structure is equal to the db, so insert the exercise $newid = insert_record ("exercise",$exercise); -- 2.39.5