summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--classes/User.php19
1 files changed, 19 insertions, 0 deletions
diff --git a/classes/User.php b/classes/User.php
index d750c7847..e8281a723 100644
--- a/classes/User.php
+++ b/classes/User.php
@@ -61,4 +61,23 @@ class User extends DB_DataObject
$sub->subscribed = $other->id;
return $sub->find();
}
+
+ # 'update' won't write key columns, so we have to do it ourselves.
+
+ function updateKeys(&$orig) {
+ $parts = array();
+ foreach (array('nickname', 'email') as $k) {
+ if ($this->$k != $orig->$k) {
+ $parts[] = $k . '="' . $this->$k . '"';
+ }
+ }
+ if (count($parts) == 0) {
+ # No changes
+ return;
+ }
+ $toupdate = implode(', ', $parts);
+ $qry = 'UPDATE ' . $this->tableName() . ' SET ' . $toupdate .
+ ' WHERE id = ' . $this->id;
+ return $this->query($qry);
+ }
}