From 306e851f93d67c6919f11d7c8910af301c57bbbf Mon Sep 17 00:00:00 2001 From: Eloy Lafuente Date: Sun, 22 Nov 2009 13:32:22 +0000 Subject: [PATCH] MDL-20932 user->secret out --- backup/backuplib.php | 1 - backup/restorelib.php | 3 --- 2 files changed, 4 deletions(-) diff --git a/backup/backuplib.php b/backup/backuplib.php index 194ddb832a4..547375932b0 100644 --- a/backup/backuplib.php +++ b/backup/backuplib.php @@ -1132,7 +1132,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 86c0dc87123..4114517f385 100644 --- a/backup/restorelib.php +++ b/backup/restorelib.php @@ -4870,9 +4870,6 @@ 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; -- 2.43.0