summaryrefslogtreecommitdiff
path: root/classes/Foreign_user.php
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2010-03-18 09:22:08 -0700
committerBrion Vibber <brion@pobox.com>2010-03-18 09:22:08 -0700
commit85b93310ddb4cd82ebe1fcefea1ff81ae5746fd0 (patch)
treec1a64438adfecd83702be7f03c2e1feecf0312a6 /classes/Foreign_user.php
parentd11593246648d3fbad30b4405d5dbbf73063769a (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.php1
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) {