*** 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

@ -280,7 +280,11 @@ class uiHandler extends uiBase {
return FALSE;
}
$r = $this->gb->deleteFile($id, $this->sessid);
if ($this->gb->getFileType($id)=='playlist') {
$r = $this->gb->deletePlaylist($id, $this->sessid);
} else {
$r = $this->gb->deleteFile($id, $this->sessid);
}
if(PEAR::isError($r)) {
$this->_retMsg($r->getMessage());
return FALSE;