From 0fd82598b50fb5d93816689525f3a1bd7b4e52ab Mon Sep 17 00:00:00 2001 From: Bharat Mediratta Date: Sat, 2 May 2009 20:14:13 +0000 Subject: 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. --- core/controllers/quick.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'core/controllers/quick.php') diff --git a/core/controllers/quick.php b/core/controllers/quick.php index 48245144..0f1a3244 100644 --- a/core/controllers/quick.php +++ b/core/controllers/quick.php @@ -82,8 +82,7 @@ class Quick_Controller extends Controller { public function make_album_cover($id) { access::verify_csrf(); - $item = ORM::factory("item", $id); - $item->make_album_cover(); + core::make_album_cover(ORM::factory("item", $id)); print json_encode(array("result" => "success")); } -- cgit v1.2.3