diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-08-09 22:58:58 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-08-09 22:58:58 -0700 |
commit | 6fa55579948f0d6fa12a301ddd33baae49240a73 (patch) | |
tree | c87a5550be5ab64462f944ace4a8a2adfc345aa8 /mod/photos.php | |
parent | d11c1c63c02e88b3c73336741a2240ccc18d3b02 (diff) | |
download | volse-hubzilla-6fa55579948f0d6fa12a301ddd33baae49240a73.tar.gz volse-hubzilla-6fa55579948f0d6fa12a301ddd33baae49240a73.tar.bz2 volse-hubzilla-6fa55579948f0d6fa12a301ddd33baae49240a73.zip |
post branch fixes
Diffstat (limited to 'mod/photos.php')
-rw-r--r-- | mod/photos.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/photos.php b/mod/photos.php index 7b07f6729..6ef94fb55 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -128,13 +128,13 @@ function photos_post(&$a) { // send the notification upstream/downstream as the case may be if($rr['visible']) - proc_close(proc_open("php include/notifier.php \"$url\" \"drop\" \"$drop_id\" ", + proc_close(proc_open("php include/notifier.php \"$url\" \"drop\" \"$drop_id\" & ", array(),$foo)); } } } - goaway($a->get_baseurl() . '/photos/' . $a->data['user']['uid']); + goaway($a->get_baseurl() . '/photos/' . $a->data['user']['nickname']); return; // NOTREACHED } @@ -164,7 +164,7 @@ function photos_post(&$a) { // send the notification upstream/downstream as the case may be if($i[0]['visible']) - proc_close(proc_open("php include/notifier.php \"$url\" \"drop\" \"$drop_id\" ", + proc_close(proc_open("php include/notifier.php \"$url\" \"drop\" \"$drop_id\" & ", array(),$foo)); } } |