CC-3403 : Replace Now Playing with the new Timeline screen

This commit is contained in:
Naomi Aro 2012-03-12 14:23:03 +01:00
parent 3b32a16813
commit f28f6659dc
6 changed files with 96 additions and 26 deletions

View file

@ -68,7 +68,7 @@ class LoginController extends Zend_Controller_Action
$tempSess = new Zend_Session_Namespace("referrer");
$tempSess->referrer = 'login';
$this->_redirect('Nowplaying');
$this->_redirect('Showbuilder');
}
else
{
@ -95,7 +95,7 @@ class LoginController extends Zend_Controller_Action
public function logoutAction()
{
Zend_Auth::getInstance()->clearIdentity();
$this->_redirect('login/index');
$this->_redirect('showbuilder/index');
}
}