Index: branches/preferences-work/phase3/includes/User.php |
— | — | @@ -2506,7 +2506,7 @@ |
2507 | 2507 | 'user_email' => $this->mEmail, |
2508 | 2508 | 'user_email_authenticated' => $dbw->timestampOrNull( $this->mEmailAuthenticated ), |
2509 | 2509 | 'user_real_name' => $this->mRealName, |
2510 | | - 'user_options' => $this->encodeOptions(), |
| 2510 | + 'user_options' => '', |
2511 | 2511 | 'user_token' => $this->mToken, |
2512 | 2512 | 'user_registration' => $dbw->timestamp( $this->mRegistration ), |
2513 | 2513 | 'user_editcount' => 0, |
— | — | @@ -2516,6 +2516,8 @@ |
2517 | 2517 | |
2518 | 2518 | // Clear instance cache other than user table data, which is already accurate |
2519 | 2519 | $this->clearInstanceCache(); |
| 2520 | + |
| 2521 | + $this->saveOptions() |
2520 | 2522 | } |
2521 | 2523 | |
2522 | 2524 | /** |