diff options
author | friendica <info@friendica.com> | 2012-05-22 21:20:31 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-05-22 21:20:31 -0700 |
commit | 3ac7c4e8599266aba69bf521c7ba94393df3c728 (patch) | |
tree | c4689d46b429d56024636ccad4094d70e2895e4e /mod/network.php | |
parent | 0da20ec9ef443edd86119601e39c42f78dc1a52f (diff) | |
download | volse-hubzilla-3ac7c4e8599266aba69bf521c7ba94393df3c728.tar.gz volse-hubzilla-3ac7c4e8599266aba69bf521c7ba94393df3c728.tar.bz2 volse-hubzilla-3ac7c4e8599266aba69bf521c7ba94393df3c728.zip |
keep FB out of private notes
Diffstat (limited to 'mod/network.php')
-rw-r--r-- | mod/network.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mod/network.php b/mod/network.php index e59839ccc..f43eeb67e 100644 --- a/mod/network.php +++ b/mod/network.php @@ -108,6 +108,10 @@ function network_content(&$a, $update = 0) { return login(false); } + $arr = array('query' => $a->query_string); + + call_hooks('network_content_init', $arr); + $o = ''; // item filter tabs @@ -157,7 +161,7 @@ function network_content(&$a, $update = 0) { $all_active = 'active'; } - + $postord_active = ''; if($all_active && x($_GET,'order') && $_GET['order'] !== 'comment') { |