aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-01-30 18:25:41 -0800
committerFriendika <info@friendika.com>2011-01-30 18:25:41 -0800
commita598f17e6d95d8a82df2994d61bfab74271dfe58 (patch)
treeb9bd722183863bac952c870fe4bc554da55bb1bc /include
parente8d52d879baf6a35de335cb2ef6a2fb0a5eb8b3e (diff)
downloadvolse-hubzilla-a598f17e6d95d8a82df2994d61bfab74271dfe58.tar.gz
volse-hubzilla-a598f17e6d95d8a82df2994d61bfab74271dfe58.tar.bz2
volse-hubzilla-a598f17e6d95d8a82df2994d61bfab74271dfe58.zip
wrong ref in ssl policy
Diffstat (limited to 'include')
-rw-r--r--include/notifier.php2
-rw-r--r--include/poller.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/notifier.php b/include/notifier.php
index dd5d55ed0..59e29d7d1 100644
--- a/include/notifier.php
+++ b/include/notifier.php
@@ -363,7 +363,7 @@ function notifier_run($argv, $argc){
continue;
$params = 'hub.mode=publish&hub.url=' . urlencode($a->get_baseurl() . '/dfrn_poll/' . $owner['nickname'] );
post_url($h,$params);
- logger('pubsub: publish: ' . $h . ' returned ' . $a->get_curl_code());
+ logger('pubsub: publish: ' . $h . ' ' . $params . ' returned ' . $a->get_curl_code());
if(count($hubs) > 1)
sleep(7); // try and avoid multiple hubs responding at precisely the same time
}
diff --git a/include/poller.php b/include/poller.php
index 1003b2f08..0dbc6f583 100644
--- a/include/poller.php
+++ b/include/poller.php
@@ -76,7 +76,7 @@ function poller_run($argv, $argc){
$contact['priority'] = (($interval !== false) ? intval($interval) : 3);
$hub_update = false;
- if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day"))
+ if((datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day")) || $force)
$hub_update = true;
}