reverted the storageServer, archiveServer, storageAdmin and htmlUI modules to their branches/campcaster-1.2 (last known working) state

This commit is contained in:
fgerlits 2007-05-10 09:57:06 +00:00
parent b3f1742c9e
commit 6efc50520c
37 changed files with 1103 additions and 1524 deletions

View file

@ -54,7 +54,7 @@ class Playlist extends StoredFile {
return $pl;
}
$fname = ($fname == '' || is_null($fname) ? "newFile.xml" : $fname );
$res = BasicStor::bsRenameFile($oid, $fname);
$res = $gb->bsRenameFile($oid, $fname);
if (PEAR::isError($res)) {
return $res;
}
@ -1606,8 +1606,8 @@ class PlaylistAudioClipExport
if (PEAR::isError($RADext)) {
return $RADext;
}
$title = BasicStor::bsGetMetadataValue($ac->getId(), 'dc:title');
$desc = BasicStor::bsGetMetadataValue($ac->getId(), 'dc:description');
$title = $pl->gb->bsGetMetadataValue($ac->getId(), 'dc:title');
$desc = $pl->gb->bsGetMetadataValue($ac->getId(), 'dc:description');
return array(
'type' => 'audioclip',
'gunid' => $gunid,