From 7dbf4cf5d2d37057e1f5ab72cb12ffcc5ddc1ccb Mon Sep 17 00:00:00 2001 From: Lucas Bickel Date: Sun, 19 Jul 2015 23:50:26 +0200 Subject: [PATCH] Add missing argument to playlistNotFound call --- airtime_mvc/application/controllers/PlaylistController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airtime_mvc/application/controllers/PlaylistController.php b/airtime_mvc/application/controllers/PlaylistController.php index 4f511f4b5..874e60dd6 100644 --- a/airtime_mvc/application/controllers/PlaylistController.php +++ b/airtime_mvc/application/controllers/PlaylistController.php @@ -200,7 +200,7 @@ class PlaylistController extends Zend_Controller_Action $obj = new $objInfo['className']($id); $this->createFullResponse($obj); } catch (PlaylistNotFoundException $e) { - $this->playlistNotFound(); + $this->playlistNotFound($type); } catch (Exception $e) { $this->playlistUnknownError($e); }