diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-05-02 20:14:13 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-05-02 20:14:13 +0000 |
commit | 0fd82598b50fb5d93816689525f3a1bd7b4e52ab (patch) | |
tree | a0488b2c031e39f630d9d255c948b0dcb541ed2d /modules/organize/helpers | |
parent | 977963444ac6ff4a97201c8c691379fc638e9935 (diff) |
Move make_album_cover and remove_album_cover out of Item_Model and
into the core helper. Clean up interactions so that when we remove an
album cover we pick a new one, or clean out the old album cover if
there are no other choices.
Diffstat (limited to 'modules/organize/helpers')
-rw-r--r-- | modules/organize/helpers/organize_task.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/organize/helpers/organize_task.php b/modules/organize/helpers/organize_task.php index a3f9b717..22a9b744 100644 --- a/modules/organize/helpers/organize_task.php +++ b/modules/organize/helpers/organize_task.php @@ -53,8 +53,7 @@ class organize_task_Core { } break; case "albumCover": - $item = ORM::factory("item", $id); - $item->make_album_cover(); + core::make_album_cover(ORM::factory("item", $id)); break; case "delete": $item = ORM::factory("item", $id); |