From 4875bc37a88c3319b53d85e8585776f205f12f0c 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 Was on 2.5.x as 7dbf4cf5d2d37057e1f5ab72cb12ffcc5ddc1ccb --- 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 543b2870b..84848d301 100644 --- a/airtime_mvc/application/controllers/PlaylistController.php +++ b/airtime_mvc/application/controllers/PlaylistController.php @@ -226,7 +226,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); }