diff options
author | friendica <info@friendica.com> | 2013-11-17 16:50:32 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-11-17 16:50:32 -0800 |
commit | 06e0272db873ad0b7dbc96596e92b8c635f940a2 (patch) | |
tree | cc9c69c446e13de010baa4fe2dcd2c401aef4f94 /mod/zotfeed.php | |
parent | 28b0eb9c330261ea6a8cd36248c194b6b153f5e6 (diff) | |
download | volse-hubzilla-06e0272db873ad0b7dbc96596e92b8c635f940a2.tar.gz volse-hubzilla-06e0272db873ad0b7dbc96596e92b8c635f940a2.tar.bz2 volse-hubzilla-06e0272db873ad0b7dbc96596e92b8c635f940a2.zip |
populate some posts when somebody is granted "read stream" permission
Diffstat (limited to 'mod/zotfeed.php')
-rw-r--r-- | mod/zotfeed.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mod/zotfeed.php b/mod/zotfeed.php index 2ca049563..6d84a5a1e 100644 --- a/mod/zotfeed.php +++ b/mod/zotfeed.php @@ -21,7 +21,7 @@ function zotfeed_init(&$a) { $channel_address = ((argc() > 1) ? argv(1) : ''); if($channel_address) { - $r = q("select channel_id from channel where channel_address = '%s' limit 1", + $r = q("select channel_id, channel_name from channel where channel_address = '%s' limit 1", dbesc(argv(1)) ); } @@ -30,6 +30,8 @@ function zotfeed_init(&$a) { json_return_and_die($result); } + logger('zotfeed request: ' . $r[0]['channel_name'], LOGGER_DEBUG); + $result['messages'] = zot_feed($r[0]['channel_id'],$observer['xchan_hash'],$mindate); $result['success'] = true; json_return_and_die($result); |