diff options
author | friendica <info@friendica.com> | 2014-08-25 22:43:44 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-08-25 22:43:44 -0700 |
commit | 6e99848043d198af5013c2439e7a2d16d8a32c52 (patch) | |
tree | 83c1b8471605dadc9d810d01fb08e81658cadce1 /include/items.php | |
parent | eb8f194419975a6cd3debba145c8769da055b8dc (diff) | |
download | volse-hubzilla-6e99848043d198af5013c2439e7a2d16d8a32c52.tar.gz volse-hubzilla-6e99848043d198af5013c2439e7a2d16d8a32c52.tar.bz2 volse-hubzilla-6e99848043d198af5013c2439e7a2d16d8a32c52.zip |
more diaspora stuff - most of the basic bits are there except queueing and physical delivery (I'm keeping delivery turned off until some of the bugs are fixed so we don't cause inifinite loops or network meltdowns) - now it's just a matter of going through and methodically finding all the bugs
Diffstat (limited to 'include/items.php')
-rwxr-xr-x | include/items.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/items.php b/include/items.php index f10a5c570..e9f11ee4a 100755 --- a/include/items.php +++ b/include/items.php @@ -95,6 +95,7 @@ function collect_recipients($item,&$private_envelope) { $recipients[] = $item['author_xchan']; if($item['owner_xchan'] != $item['author_xchan']) $recipients[] = $item['owner_xchan']; + return $recipients; } |