Code cleanup

This commit is contained in:
Rudi Grinberg 2012-09-14 15:13:08 -04:00
parent 79ce7b572c
commit 05916a4d26
2 changed files with 6 additions and 6 deletions

View File

@ -90,9 +90,9 @@ class LibraryController extends Zend_Controller_Action
protected function playlistNotFound($p_type)
{
$this->view->error = "{$p_type} not found";
$this->view->error = "$p_type not found";
Logging::info("{$p_type} not found");
Logging::info("$p_type not found");
Application_Model_Library::changePlaylist(null, $p_type);
$this->createFullResponse(null);
}