diff options
author | Friendika <info@friendika.com> | 2011-10-04 18:53:56 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-10-04 18:53:56 -0700 |
commit | 7b648e6da85ece5b402dfce6d546f5711bc63bea (patch) | |
tree | 940f25331bc9e62decc8cf831619e083c3fdf28a /mod | |
parent | 24595c55d7258660862ef5bc2203b226d6615362 (diff) | |
download | volse-hubzilla-7b648e6da85ece5b402dfce6d546f5711bc63bea.tar.gz volse-hubzilla-7b648e6da85ece5b402dfce6d546f5711bc63bea.tar.bz2 volse-hubzilla-7b648e6da85ece5b402dfce6d546f5711bc63bea.zip |
performance enhancements
Diffstat (limited to 'mod')
-rw-r--r-- | mod/pubsub.php | 9 |
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), |