summaryrefslogtreecommitdiff
path: root/classes
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2010-04-10 17:54:37 -0700
committerBrion Vibber <brion@pobox.com>2010-04-10 17:54:37 -0700
commitedd883d3b009788049a9326bd6bdcc7846f87a8a (patch)
treed8aa5c080e48da1adffc5cefdf862ebd71afe097 /classes
parent166c1edba97d065d0fd424621305fd016e644c43 (diff)
parent71c828de89d4092579470c9f2ba821ae803cb557 (diff)
Merge branch 'master' of gitorious.org:statusnet/mainline into testing
Diffstat (limited to 'classes')
-rw-r--r--classes/User.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/classes/User.php b/classes/User.php
index 2c256301c..1928a3c62 100644
--- a/classes/User.php
+++ b/classes/User.php
@@ -548,7 +548,10 @@ class User extends Memcached_DataObject
return false;
}
- Subscription::cancel($other, $this->getProfile());
+ $self = $this->getProfile();
+ if (Subscription::exists($other, $self)) {
+ Subscription::cancel($other, $self);
+ }
$block->query('COMMIT');