CC-2415:Subsecond offset

- temp commit. not sure what needs to be done yet
This commit is contained in:
James 2011-06-24 12:29:55 -04:00
parent 183a348f34
commit e05645f523
3 changed files with 19 additions and 7 deletions

View file

@ -147,6 +147,12 @@ class LibraryController extends Zend_Controller_Action
{
$post = $this->getRequest()->getPost();
$datatables = StoredFile::searchFilesForPlaylistBuilder($post);
//format clip lengh to 2 decimal
/*foreach($datatables["aaData"] as &$data){
$sec = Playlist::playlistTimeToSeconds($data[5]);
$data[5] = Playlist::secondsToPlaylistTime($sec);
}*/
die(json_encode($datatables));
}