diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-09-20 19:34:44 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-09-20 19:34:44 -0700 |
commit | 3ad52463f633b060bee519e8aa4d6e9453fdc2aa (patch) | |
tree | 5235655b2dd2e9a2af5f1179ebbff20dfdbd05b6 /mod/network.php | |
parent | 177a6d7f79f5e237eb6d0811e8e28732a4c90d03 (diff) | |
download | volse-hubzilla-3ad52463f633b060bee519e8aa4d6e9453fdc2aa.tar.gz volse-hubzilla-3ad52463f633b060bee519e8aa4d6e9453fdc2aa.tar.bz2 volse-hubzilla-3ad52463f633b060bee519e8aa4d6e9453fdc2aa.zip |
more robust feed error handling, at the expense of performance.
Pass profile owner through HTML (yuk) to the ajax updater - as
browser pre-fetch totally buggers passing it via the server session.
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 c5845f63c..e9e730340 100644 --- a/mod/network.php +++ b/mod/network.php @@ -7,7 +7,7 @@ function network_init(&$a) { } -function network_content(&$a, $update = false) { +function network_content(&$a, $update = 0) { if(! local_user()) return; @@ -59,7 +59,7 @@ function network_content(&$a, $update = false) { // criteria is discovered in javascript). if($a->pager['start'] == 0 && $a->argc == 1) - $o .= '<div id="live-network"></div>' . "\r\n"; + $o .= '<div id="live-network" profile="' . $_SESSION['uid'] . '"></div>' . "\r\n"; } // We aren't going to try and figure out at the item, group, and page level |