From aab76ab18aa6c191dd16c3672afdacfa61ae69bb Mon Sep 17 00:00:00 2001 From: Cash Costello Date: Sun, 5 Jun 2011 12:25:10 +0000 Subject: Fixes #135 not posting the batch to the river on first upload to an album --- actions/upload.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'actions/upload.php') diff --git a/actions/upload.php b/actions/upload.php index f2b626f01..c0496da96 100644 --- a/actions/upload.php +++ b/actions/upload.php @@ -23,6 +23,12 @@ if (!$image_lib) { $img_river_view = get_plugin_setting('img_river_view', 'tidypics'); +if ($album->new_album == TP_NEW_ALBUM) { + $new_album = true; +} else { + $new_album = false; +} + // post limit exceeded if (count($_FILES) == 0) { @@ -177,7 +183,7 @@ if (count($uploaded_images)) { foreach ($uploaded_images as $uploaded_guid) { add_entity_relationship($uploaded_guid, "belongs_to_batch", $batch->getGUID()); } - if ($img_river_view == "batch") { + if ($img_river_view == "batch" && $new_album == false) { add_to_river('river/object/tidypics_batch/create', 'create', $batch->getObjectOwnerGUID(), $batch->getGUID()); } } -- cgit v1.2.3