diff options
author | friendica <info@friendica.com> | 2014-09-22 22:03:19 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-09-22 22:03:19 -0700 |
commit | e8854bb19dae01b18d2eb13af76d277847bdbb5a (patch) | |
tree | 1011266737b735fbd978aed7a60ff4f9c47256c9 /mod/network.php | |
parent | fb05919d90cac9bb360bbb62b7e89d5c0e59b484 (diff) | |
download | volse-hubzilla-e8854bb19dae01b18d2eb13af76d277847bdbb5a.tar.gz volse-hubzilla-e8854bb19dae01b18d2eb13af76d277847bdbb5a.tar.bz2 volse-hubzilla-e8854bb19dae01b18d2eb13af76d277847bdbb5a.zip |
better way to deal with effective_uid
Diffstat (limited to 'mod/network.php')
-rw-r--r-- | mod/network.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/network.php b/mod/network.php index 2b07bb139..0bad366d4 100644 --- a/mod/network.php +++ b/mod/network.php @@ -403,9 +403,9 @@ function network_content(&$a, $update = 0, $load = false) { dbesc($parents_str) ); - xchan_query($items); + xchan_query($items,true,(($firehose) ? local_user() : 0)); $items = fetch_post_tags($items,true); - $items = conv_sort($items,$ordering,(($firehose) ? local_user() : 0)); + $items = conv_sort($items,$ordering); } else { $items = array(); |