From bf652f34eb1546f1bff37b4caf80a161e88a416e Mon Sep 17 00:00:00 2001 From: Cash Costello Date: Sun, 2 Aug 2009 22:39:00 +0000 Subject: now sending the new album notification after the first set of photos are uploaded --- actions/upload.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'actions/upload.php') diff --git a/actions/upload.php b/actions/upload.php index 6911978b0..d5fb7d802 100644 --- a/actions/upload.php +++ b/actions/upload.php @@ -187,11 +187,16 @@ // update user/group size for checking quota $image_repo_size += $sent_file['size']; - // successful upload so check if this is a new album and throw river event if so + // successful upload so check if this is a new album and throw river event/notification if so if ($album->new_album == TP_NEW_ALBUM) { + $album->new_album = TP_OLD_ALBUM; + + // we throw the notification manually here so users are not told about the new album until there + // is at least a few photos in it + object_notifications('create', 'object', $album); + if (function_exists('add_to_river')) add_to_river('river/object/album/create', 'create', $album->owner_guid, $album->guid); - $album->new_album = TP_OLD_ALBUM; } if ($img_river_view == "all") { -- cgit v1.2.3