diff options
author | friendica <info@friendica.com> | 2013-01-24 14:31:57 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-01-24 14:31:57 -0800 |
commit | 4f7f547190f5ec2557739aad6b2c09e3f45cdc76 (patch) | |
tree | 279db2a4d10442f39a284cdf8894a32f2b05263f /include/items.php | |
parent | 5da1948ede2f88736e8689c530d6430d56965056 (diff) | |
download | volse-hubzilla-4f7f547190f5ec2557739aad6b2c09e3f45cdc76.tar.gz volse-hubzilla-4f7f547190f5ec2557739aad6b2c09e3f45cdc76.tar.bz2 volse-hubzilla-4f7f547190f5ec2557739aad6b2c09e3f45cdc76.zip |
why oh why is poco_load not getting called? oh - that's why.
Diffstat (limited to 'include/items.php')
-rwxr-xr-x | include/items.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/items.php b/include/items.php index 4832c2916..04d088d44 100755 --- a/include/items.php +++ b/include/items.php @@ -4282,14 +4282,14 @@ function fetch_post_tags($items) { -function zot_feed($uid,$observer,$mindate) { +function zot_feed($uid,$observer_xchan,$mindate) { $result = array(); $mindate = datetime_convert('UTC','UTC',$mindate); if(! $mindate) $mindate = '0000-00-00 00:00:00'; - if(! perm_is_allowed($uid,$observer,'view_stream')) { + if(! perm_is_allowed($uid,$observer_xchan,'view_stream')) { return $result; } |