container_guid = $container_guid; $album->owner_guid = elgg_get_logged_in_user_guid(); $album->access_id = $access_id; $album->title = $title; $album->description = $description; if ($tags) { $album->tags = string_to_tag_array($tags); } if (!$album->save()) { register_error(elgg_echo("album:error")); forward(REFERER); } elgg_clear_sticky_form('tidypics'); system_message(elgg_echo("album:created")); forward($album->getURL());