diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-07-24 23:20:20 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-07-24 23:20:20 -0700 |
commit | fc8379b1080823bb69664aa4119ba190e1f5b1ca (patch) | |
tree | 80179ca329106a59247a54106e34716eee19dfff /mod/profile.php | |
parent | 6368bd165612dfa1e95e8d4c99b922797bf429af (diff) | |
download | volse-hubzilla-fc8379b1080823bb69664aa4119ba190e1f5b1ca.tar.gz volse-hubzilla-fc8379b1080823bb69664aa4119ba190e1f5b1ca.tar.bz2 volse-hubzilla-fc8379b1080823bb69664aa4119ba190e1f5b1ca.zip |
live updates sort of working
Diffstat (limited to 'mod/profile.php')
-rw-r--r-- | mod/profile.php | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/mod/profile.php b/mod/profile.php index aa13f0a78..0cfe22807 100644 --- a/mod/profile.php +++ b/mod/profile.php @@ -212,13 +212,18 @@ function profile_content(&$a, $update = false) { $redirect_url = $a->get_baseurl() . '/redir/' . $item['cid'] ; - if(can_write_wall($a,$a->profile['profile_uid'])) { + if($update) + $return_url = $_SESSION['return_url']; + else + $return_url = $_SESSION['return_url'] = $a->cmd; + + if(can_write_wall($a,$a->profile['uid'])) { if($item['last-child']) { $comment = replace_macros($cmnt_tpl,array( - '$return_path' => $a->cmd, + '$return_path' => $_SESSION['return_url'], '$id' => $item['item_id'], '$parent' => $item['parent'], - '$profile_uid' => $a->profile['profile_uid'], + '$profile_uid' => $a->profile['uid'], '$ww' => '' )); } |