From: Eloy Lafuente Date: Sun, 22 Nov 2009 13:36:19 +0000 (+0000) Subject: MDL-20932 user->secret out - merged from 19_STABLE X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=886e63dda9d92aac72928a194dbb834a896ad8cf;p=moodle.git MDL-20932 user->secret out - merged from 19_STABLE --- diff --git a/backup/backuplib.php b/backup/backuplib.php index 25909933a3..65bfaff739 100644 --- a/backup/backuplib.php +++ b/backup/backuplib.php @@ -1370,7 +1370,6 @@ fwrite ($bf,full_tag("LASTLOGIN",4,false,$user->lastlogin)); fwrite ($bf,full_tag("CURRENTLOGIN",4,false,$user->currentlogin)); fwrite ($bf,full_tag("LASTIP",4,false,$user->lastip)); - fwrite ($bf,full_tag("SECRET",4,false,$user->secret)); fwrite ($bf,full_tag("PICTURE",4,false,$user->picture)); fwrite ($bf,full_tag("URL",4,false,$user->url)); fwrite ($bf,full_tag("DESCRIPTION",4,false,$user->description)); diff --git a/backup/restorelib.php b/backup/restorelib.php index ef8b85f2bd..eccc2fab4a 100644 --- a/backup/restorelib.php +++ b/backup/restorelib.php @@ -6844,9 +6844,6 @@ define('RESTORE_GROUPS_GROUPINGS', 3); case "LASTIP": $this->info->tempuser->lastip = $this->getContents(); break; - case "SECRET": - $this->info->tempuser->secret = $this->getContents(); - break; case "PICTURE": $this->info->tempuser->picture = $this->getContents(); break;