*** empty log message ***
This commit is contained in:
parent
0da71b6798
commit
f181ea7515
20 changed files with 137 additions and 58 deletions
|
@ -43,7 +43,7 @@ if (is_array($_REQUEST['popup'])){
|
|||
if ($uiBrowser->userid) {
|
||||
$Smarty->assign('showMenuTop', TRUE);
|
||||
$Smarty->assign('SCRATCHPAD', $uiBrowser->SCRATCHPAD->get());
|
||||
$Smarty->assign('PLAYLIST', $uiBrowser->PLAYLIST->get());
|
||||
$Smarty->assign('PLAYLIST', $uiBrowser->PLAYLIST->get());
|
||||
|
||||
switch ($_REQUEST['act']){
|
||||
case "fileBrowse":
|
||||
|
@ -147,8 +147,9 @@ if ($uiBrowser->userid) {
|
|||
$Smarty->assign('changeStationPrefs', TRUE);
|
||||
break;
|
||||
|
||||
case "PL.display":
|
||||
$Smarty->assign('playlist', $uiBrowser->PLAYLIST->get());
|
||||
case "PL.simpleManagement":
|
||||
$uiBrowser->PLAYLIST->testNew();
|
||||
$Smarty->assign('PL_simpleManagement', TRUE);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -4,16 +4,20 @@ require dirname(__FILE__).'/../ui_handler_init.php';
|
|||
switch($_REQUEST['act']){
|
||||
|
||||
case "login":
|
||||
$uiHandler->login($_REQUEST, $ui_fmask["login"]);
|
||||
if (($ui_tmp_sessid = $uiHandler->login($_REQUEST, $ui_fmask["login"])) !== FALSE) {
|
||||
$uiHandler->PLAYLIST->testForLooked();
|
||||
}
|
||||
break;
|
||||
|
||||
case "logout":
|
||||
$uiHandler->SCRATCHPAD->save();
|
||||
$uiHandler->PLAYLIST->testForLooked();
|
||||
$uiHandler->logout();
|
||||
break;
|
||||
|
||||
case "signover":
|
||||
$uiHandler->SCRATCHPAD->save();
|
||||
$uiHandler->PLAYLIST->testForLooked();
|
||||
$uiHandler->logout(TRUE);
|
||||
break;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue