diff options
Diffstat (limited to 'core/controllers/quick.php')
-rw-r--r-- | core/controllers/quick.php | 3 |
1 files changed, 1 insertions, 2 deletions
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")); } |