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/addalbum.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'actions/addalbum.php') diff --git a/actions/addalbum.php b/actions/addalbum.php index 909f04c9f..b53cf9692 100644 --- a/actions/addalbum.php +++ b/actions/addalbum.php @@ -41,19 +41,20 @@ $album->title = $title; $album->description = $body; + // we catch the adding images to new albums in the upload action and throw a river new album event + $album->new_album = TP_NEW_ALBUM; + // Before we can set metadata, we need to save the album if (!$album->save()) { register_error(elgg_echo("album:error")); forward(get_input('forward_url', $_SERVER['HTTP_REFERER'])); //failed, so forward to previous page } - // Now let's add tags. We can pass an array directly to the object property! Easy. + // Now let's add tags if (is_array($tagarray)) { $album->tags = $tagarray; } - // we catch the adding images to new albums in the upload action and throw a river new album event - $album->new_album = TP_NEW_ALBUM; // Success message -- cgit v1.2.3