*** empty log message ***

This commit is contained in:
sebastian 2005-02-24 19:51:06 +00:00
parent 809cb83c49
commit c683356fd0
17 changed files with 141 additions and 34 deletions

View file

@ -144,11 +144,26 @@ switch($_REQUEST['act']){
$uiHandler->SEARCH->setOffset($_REQUEST['page']);
break;
case "activatePL":
case "PL.activate":
$uiHandler->PLAYLIST->activate($_REQUEST['id']);
$uiHandler->PLAYLIST->setReload();
break;
case "PL.newUsingItem":
$uiHandler->PLAYLIST->newUsingItem($_REQUEST['id']);
$uiHandler->PLAYLIST->setReload();
break;
case "PL.addItem":
$uiHandler->PLAYLIST->addItem($_REQUEST['id']);
$uiHandler->PLAYLIST->setReload();
break;
case "PL.release":
$uiHandler->PLAYLIST->release();
$uiHandler->PLAYLIST->setReload();
break;
default:
$_SESSION["alertMsg"] = tra("Unknown method: $1", $_REQUEST["act"]);
header("Location: ".UI_BROWSER.'?popup[]=_reload_parent&popup[]=_close');