diff options
author | Brion Vibber <brion@pobox.com> | 2010-03-18 09:22:08 -0700 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-03-18 09:24:55 -0700 |
commit | 515cdf28a83eda5cc82f0c423099a36c0168dbb6 (patch) | |
tree | 13d893ff3fffed35eb159cc277d45f239fc117dc /classes/Foreign_user.php | |
parent | 425ddcaa265f5b305176ca0bcd48833a0ef0c75a (diff) |
Ensure that DB connection is active at start of User::updateKeys() and Foreign_user::updateKeys(); calls to $this->_quote() require a live connection object and don't lazy-initialize themselves.
May fix WSOD when changing incoming email address.
Diffstat (limited to 'classes/Foreign_user.php')
-rw-r--r-- | classes/Foreign_user.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/classes/Foreign_user.php b/classes/Foreign_user.php index 8b3e03dfb..0dd94ffb9 100644 --- a/classes/Foreign_user.php +++ b/classes/Foreign_user.php @@ -41,6 +41,7 @@ class Foreign_user extends Memcached_DataObject function updateKeys(&$orig) { + $this->_connect(); $parts = array(); foreach (array('id', 'service', 'uri', 'nickname') as $k) { if (strcmp($this->$k, $orig->$k) != 0) { |