aboutsummaryrefslogtreecommitdiffstats
path: root/mod/pubsub.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2010-11-07 21:07:47 -0800
committerFriendika <info@friendika.com>2010-11-07 21:07:47 -0800
commitfbb01666906ba4f909dc9eac98aa3ca6a936b99e (patch)
tree95a757b8e4f7d8f56658d61a1e4f7beb1c10f95d /mod/pubsub.php
parentd3ead4e690787879cff9aa4e34df27c96296f45c (diff)
downloadvolse-hubzilla-fbb01666906ba4f909dc9eac98aa3ca6a936b99e.tar.gz
volse-hubzilla-fbb01666906ba4f909dc9eac98aa3ca6a936b99e.tar.bz2
volse-hubzilla-fbb01666906ba4f909dc9eac98aa3ca6a936b99e.zip
lint
Diffstat (limited to 'mod/pubsub.php')
-rw-r--r--mod/pubsub.php17
1 files changed, 8 insertions, 9 deletions
diff --git a/mod/pubsub.php b/mod/pubsub.php
index e3392668e..760ffa9e9 100644
--- a/mod/pubsub.php
+++ b/mod/pubsub.php
@@ -29,15 +29,15 @@ function hub_post_return() {
function pubsub_init(&$a) {
$nick = (($a->argc > 1) ? notags(trim($a->argv[1])) : '');
- $contact_id = (($a->argc > 2) ? intval($a->argv[2]) : 0);
+ $contact_id = (($a->argc > 2) ? intval($a->argv[2]) : 0 );
if($_SERVER['REQUEST_METHOD'] === 'GET') {
- $hub_mode = notags(trim($_GET['hub_mode']));
- $hub_topic = notags(trim($_GET['hub_topic']));
- $hub_challenge = notags(trim($_GET['hub_challenge']));
- $hub_lease = notags(trim($_GET['hub_lease_seconds']));
- $hub_verify = notags(trim($_GET['hub_verify_token']));
+ $hub_mode = ((x($_GET,'hub_mode')) ? notags(trim($_GET['hub_mode'])) : '');
+ $hub_topic = ((x($_GET,'hub_topic')) ? notags(trim($_GET['hub_topic'])) : '');
+ $hub_challenge = ((x($_GET,'hub_challenge')) ? notags(trim($_GET['hub_challenge'])) : '');
+ $hub_lease = ((x($_GET,'hub_lease_seconds')) ? notags(trim($_GET['hub_lease_seconds'])) : '');
+ $hub_verify = ((x($_GET,'hub_verify_token')) ? notags(trim($_GET['hub_verify_token'])) : '');
logger('pubsub: Subscription from' . $_SERVER['REMOTE_ADDR'] . print_r($_GET,true));
@@ -75,8 +75,7 @@ function pubsub_init(&$a) {
intval($contact['id'])
);
- hub_return(true, $hub_challenge);
-
+ hub_return(true, $hub_challenge);
}
}
@@ -91,7 +90,7 @@ function pubsub_post(&$a) {
logger('pubsub: data: ' . $xml, LOGGER_DATA);
$nick = (($a->argc > 1) ? notags(trim($a->argv[1])) : '');
- $contact_id = (($a->argc > 2) ? intval($a->argv[2]) : 0);
+ $contact_id = (($a->argc > 2) ? intval($a->argv[2]) : 0 );
$r = q("SELECT * FROM `user` WHERE `nickname` = '%s' LIMIT 1",
dbesc($nick)