From 7acd3a2947f7bd92ded5bc5f02baa5db87f6b212 Mon Sep 17 00:00:00 2001 From: Cash Costello Date: Sat, 21 Mar 2009 18:12:50 +0000 Subject: cleaned up actions - formatting --- actions/edit_multi.php | 58 +++++++++++++++++++++++++------------------------- 1 file changed, 29 insertions(+), 29 deletions(-) (limited to 'actions/edit_multi.php') diff --git a/actions/edit_multi.php b/actions/edit_multi.php index 9bb9c4eed..a857e92d7 100644 --- a/actions/edit_multi.php +++ b/actions/edit_multi.php @@ -1,62 +1,62 @@ $im){ + foreach($image_guid_array as $key => $im) { $image = get_entity($im); - if ($image->canEdit()){ + if ($image->canEdit()) { - // Convert string of tags into a preformatted array + // Convert string of tags into a preformatted array $tagarray = string_to_tag_array($tags_array[$key]); - //set description appropriately + //set description appropriately $image->title = $title_array[$key]; - //set description appropriately + //set description appropriately $image->description = $caption_array[$key]; - // Before we can set metadata, we need to save the image + // Before we can set metadata, we need to save the image if (!$image->save()) { array_push($not_updated, $image->guid); } - // Now let's add tags. We can pass an array directly to the object property! Easy. + // Now let's add tags. We can pass an array directly to the object property! Easy. $image->clearMetadata('tags'); if (is_array($tagarray)) { $image->tags = $tagarray; } - //if cover meta is sent from image save as metadata - if($cover == $im){ + //if cover meta is sent from image save as metadata + if ($cover == $im) { $album_entity->cover = $im; } } - } - // Success message - if (count($not_updated) > 0) { - register_error(elgg_echo("images:notedited")); - } else { - system_message(elgg_echo("images:edited")); - } + } + + // Success message + if (count($not_updated) > 0) { + register_error(elgg_echo("images:notedited")); + } else { + system_message(elgg_echo("images:edited")); + } - // Forward to the main album page - forward($album_entity->getURL()); - + // Forward to the main album page + forward($album_entity->getURL()); ?> \ No newline at end of file -- cgit v1.2.3