CC-2448:Dragging causes an error

-fixed
This commit is contained in:
James 2011-06-24 17:14:04 -04:00
parent cace4c6d89
commit 975633b9cf
1 changed files with 2 additions and 2 deletions

View File

@ -91,8 +91,8 @@ class Playlist {
{
$seconds = $p_seconds;
$rounded = round($seconds, 1);
list($dump, $milliStr) = explode('.', $rounded);
if($milliStr == NULL){
$info = explode('.', $rounded);
if(!isset($info[1])){
$milliStr = 0;
}
$hours = floor($seconds / 3600);