CC-4882: Scheduled item does not take into account cue_out - cue_in time
-fixed
This commit is contained in:
parent
2ef8604c31
commit
f1215c10fd
2 changed files with 13 additions and 2 deletions
|
@ -1285,6 +1285,14 @@ SQL;
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
public function getRealClipLength($p_cuein, $p_cueout) {
|
||||
$sql = "SELECT :cueout::INTERVAL - :cuein::INTERVAL";
|
||||
|
||||
return Application_Common_Database::prepareAndExecute($sql, array(
|
||||
':cueout' => $p_cueout,
|
||||
':cuein' => $p_cuein), 'column');
|
||||
}
|
||||
}
|
||||
|
||||
class DeleteScheduledFileException extends Exception {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue