diff options
author | Cash Costello <cash.costello@gmail.com> | 2010-10-23 15:01:00 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2010-10-23 15:01:00 +0000 |
commit | f1f08168b325605a489b5f21cfdfff96312d55f8 (patch) | |
tree | 15d8e30d9b645c3fe229cb9a336e7a7708e46070 /actions | |
parent | bff17c5857d0365038e6783c3c00b53204f4a10e (diff) | |
download | elgg-f1f08168b325605a489b5f21cfdfff96312d55f8.tar.gz elgg-f1f08168b325605a489b5f21cfdfff96312d55f8.tar.bz2 |
moved cover code into album class
Diffstat (limited to 'actions')
-rw-r--r-- | actions/edit.php | 2 | ||||
-rw-r--r-- | actions/edit_multi.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/actions/edit.php b/actions/edit.php index db6e26ab9..cca66941a 100644 --- a/actions/edit.php +++ b/actions/edit.php @@ -65,7 +65,7 @@ if (is_array($tagarray)) { //if cover meta is sent from image save as metadata if ($subtype == 'image' && $cover == elgg_echo('album:cover')) { $album = get_entity($container_guid); - $album->cover = $entity->guid; + $album->setCoverImageGuid($entity->guid); } // Success message diff --git a/actions/edit_multi.php b/actions/edit_multi.php index c938e6065..1d0e537b0 100644 --- a/actions/edit_multi.php +++ b/actions/edit_multi.php @@ -49,7 +49,7 @@ foreach($image_guid_array as $key => $im) { //if cover meta is sent from image save as metadata if ($cover == $im) { - $album_entity->cover = $im; + $album_entity->setCoverImageGuid($im); } } } |