CC-4954: Please make Library page remember the status per user

- it was only working if there was a playlist object set
- fixed so it works even if there isnt
This commit is contained in:
denise 2013-02-19 11:37:22 -05:00
parent 14f1d5572f
commit c0c6ac5d75
1 changed files with 13 additions and 11 deletions

View File

@ -77,21 +77,23 @@ class LibraryController extends Zend_Controller_Action
}
}
//get user settings and determine if we need to hide
// or show the playlist editor
$showPlaylist = false;
$data = Application_Model_Preference::getLibraryScreenSettings();
if (!is_null($data)) {
if ($data["playlist"] == "true") {
$showLib = true;
}
}
$this->view->showPlaylist = $showPlaylist;
$formatter = new LengthFormatter($obj->getLength());
$this->view->length = $formatter->format();
$this->view->type = $obj_sess->type;
}
//get user settings and determine if we need to hide
// or show the playlist editor
$showPlaylist = false;
$data = Application_Model_Preference::getLibraryScreenSettings();
Logging::info($data);
if (!is_null($data)) {
Logging::info($data);
if ($data["playlist"] == "true") {
$showPlaylist = true;
}
}
$this->view->showPlaylist = $showPlaylist;
} catch (PlaylistNotFoundException $e) {
$this->playlistNotFound($obj_sess->type);
} catch (Exception $e) {