pass vars via javascript, not html. Also fix broken pause img on IE
This commit is contained in:
parent
b9247f1dcc
commit
a428695f8e
4 changed files with 17 additions and 15 deletions
|
@ -58,8 +58,11 @@ function network_content(&$a, $update = 0) {
|
|||
// filtering by group and also you aren't writing a comment (the last
|
||||
// criteria is discovered in javascript).
|
||||
|
||||
if($a->pager['start'] == 0 && $a->argc == 1)
|
||||
$o .= '<div id="live-network" profile="' . $_SESSION['uid'] . '"></div>' . "\r\n";
|
||||
if($a->pager['start'] == 0 && $a->argc == 1) {
|
||||
$o .= '<div id="live-network"></div>' . "\r\n";
|
||||
$o .= "<script> var profile_uid = " . $_SESSION['uid'] . "; </script>\r\n";
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// We aren't going to try and figure out at the item, group, and page level
|
||||
|
|
|
@ -163,8 +163,11 @@ function profile_content(&$a, $update = 0) {
|
|||
// This is ugly, but we can't pass the profile_uid through the session to the ajax updater,
|
||||
// because browser prefetching might change it on us. We have to deliver it with the page.
|
||||
|
||||
if($tab == 'posts' && (! $a->pager['start']))
|
||||
$o .= '<div id="live-profile" profile="' . $a->profile['profile_uid'] . '"></div>' . "\r\n";
|
||||
if($tab == 'posts' && (! $a->pager['start'])) {
|
||||
$o .= '<div id="live-profile"></div>' . "\r\n";
|
||||
$o .= "<script> var profile_uid = " . $a->profile['profile_uid'] . "; </script>\r\n";
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// TODO alter registration and settings and profile to update contact table when names and photos change.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue