diff options
author | friendica <info@friendica.com> | 2015-03-31 21:06:48 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-03-31 21:06:48 -0700 |
commit | 6f78d7a85d0371dc7fb72acb3a85217005400f91 (patch) | |
tree | 89241f3af460da44bc3c9c74e15d7da5dfb4dbec /mod/post.php | |
parent | c98de445281e1a819581f96d0919eb5da307c62c (diff) | |
download | volse-hubzilla-6f78d7a85d0371dc7fb72acb3a85217005400f91.tar.gz volse-hubzilla-6f78d7a85d0371dc7fb72acb3a85217005400f91.tar.bz2 volse-hubzilla-6f78d7a85d0371dc7fb72acb3a85217005400f91.zip |
fix regdir
Diffstat (limited to 'mod/post.php')
-rw-r--r-- | mod/post.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mod/post.php b/mod/post.php index 37002b249..95931a3f0 100644 --- a/mod/post.php +++ b/mod/post.php @@ -622,7 +622,7 @@ function post_post(&$a) { dbesc($data['callback']) ); if($r) { - logger('mod_zot: succesful pickup message received from ' . $data['callback'] . ' ' . count($r) . ' message(s) picked up', LOGGER_DEBUG); + logger('mod_zot: successful pickup message received from ' . $data['callback'] . ' ' . count($r) . ' message(s) picked up', LOGGER_DEBUG); $ret['success'] = true; $ret['pickup'] = array(); @@ -919,6 +919,10 @@ function post_post(&$a) { } if ($msgtype === 'notify') { + + logger('notify received from ' . $hub['hubloc_url']); + + $async = get_config('system','queued_fetch'); if ($async) { |