aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-10-04 18:53:56 -0700
committerFriendika <info@friendika.com>2011-10-04 18:53:56 -0700
commit7b648e6da85ece5b402dfce6d546f5711bc63bea (patch)
tree940f25331bc9e62decc8cf831619e083c3fdf28a /mod
parent24595c55d7258660862ef5bc2203b226d6615362 (diff)
downloadvolse-hubzilla-7b648e6da85ece5b402dfce6d546f5711bc63bea.tar.gz
volse-hubzilla-7b648e6da85ece5b402dfce6d546f5711bc63bea.tar.bz2
volse-hubzilla-7b648e6da85ece5b402dfce6d546f5711bc63bea.zip
performance enhancements
Diffstat (limited to 'mod')
-rw-r--r--mod/pubsub.php9
1 files changed, 7 insertions, 2 deletions
diff --git a/mod/pubsub.php b/mod/pubsub.php
index 0c506db00..93d50ef90 100644
--- a/mod/pubsub.php
+++ b/mod/pubsub.php
@@ -69,8 +69,13 @@ function pubsub_init(&$a) {
// We must initiate an unsubscribe request with a verify_token.
// Don't allow outsiders to unsubscribe us.
- if(($hub_mode === 'unsubscribe') && (! strlen($hub_verify)))
- hub_return(false, '');
+ if($hub_mode === 'unsubscribe') {
+ if(! strlen($hub_verify)) {
+ logger('pubsub: bogus unsubscribe');
+ hub_return(false, '');
+ }
+ logger('pubsub: unsubscribe success');
+ }
$r = q("UPDATE `contact` SET `subhub` = %d WHERE `id` = %d LIMIT 1",
intval($subscribe),