diff options
author | zotlabs <mike@macgirvin.com> | 2017-10-16 18:20:17 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-10-16 18:20:17 -0700 |
commit | 9497c6c0f7470800a54b0c8f60467f675b32c5ed (patch) | |
tree | 99092dcb6b503cf92633395325cdfb2f25cd299d /include/zot.php | |
parent | 4dd05dc4e88171fb2bcaacde8c0699f64f6bb7e5 (diff) | |
parent | b8a9390f49bf69f3a982cb44e7dfab6e55e6e5d3 (diff) | |
download | volse-hubzilla-9497c6c0f7470800a54b0c8f60467f675b32c5ed.tar.gz volse-hubzilla-9497c6c0f7470800a54b0c8f60467f675b32c5ed.tar.bz2 volse-hubzilla-9497c6c0f7470800a54b0c8f60467f675b32c5ed.zip |
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev_merge
Diffstat (limited to 'include/zot.php')
-rw-r--r-- | include/zot.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/zot.php b/include/zot.php index 3fa62445c..55632fc31 100644 --- a/include/zot.php +++ b/include/zot.php @@ -312,6 +312,7 @@ function zot_refresh($them, $channel = null, $force = false) { logger('zot_refresh: ' . $url, LOGGER_DATA, LOG_INFO); + $result = z_post_url($url . $rhs,$postvars); if ($result['success']) { @@ -4045,7 +4046,7 @@ function zotinfo($arr) { $id = $e['channel_id']; - $x = [ 'channel_id' => $id, 'protocols' => 'zot' ]; + $x = [ 'channel_id' => $id, 'protocols' => ['zot'] ]; call_hooks('channel_protocols',$x); $protocols = $x['protocols']; |