*** empty log message ***

This commit is contained in:
sebastian 2005-02-28 10:15:29 +00:00
parent f807c93626
commit c351c49c7c
9 changed files with 43 additions and 34 deletions

View file

@ -4,20 +4,19 @@ require dirname(__FILE__).'/../ui_handler_init.php';
switch($_REQUEST['act']){
case "login":
if (($ui_tmp_sessid = $uiHandler->login($_REQUEST, $ui_fmask["login"])) !== FALSE) {
$uiHandler->PLAYLIST->testForLooked();
}
if ($uiHandler->login($_REQUEST, $ui_fmask["login"]) === TRUE)
$uiHandler->PLAYLIST->loadLookedFromPref();
break;
case "logout":
$uiHandler->SCRATCHPAD->save();
$uiHandler->PLAYLIST->testForLooked();
$uiHandler->PLAYLIST->release();
$uiHandler->logout();
break;
case "signover":
$uiHandler->SCRATCHPAD->save();
$uiHandler->PLAYLIST->testForLooked();
$uiHandler->PLAYLIST->release();
$uiHandler->logout(TRUE);
break;