aboutsummaryrefslogtreecommitdiff
path: root/plugins/video_zencoder
diff options
context:
space:
mode:
authorMohamed Mujahid <muja_dd@494418.no-reply.drupal.org>2010-07-23 10:01:23 +0000
committerMohamed Mujahid <muja_dd@494418.no-reply.drupal.org>2010-07-23 10:01:23 +0000
commitef4365879413eab6a0d2be64374a9840c7eed804 (patch)
treef32097751575177f2245b68b412f55cd95cbc70a /plugins/video_zencoder
parente8f0a0d58a73a0d3e5877d9cd433e5c191fd93d2 (diff)
downloadvideo-ef4365879413eab6a0d2be64374a9840c7eed804.tar.gz
video-ef4365879413eab6a0d2be64374a9840c7eed804.tar.bz2
function replacements
Diffstat (limited to 'plugins/video_zencoder')
-rw-r--r--plugins/video_zencoder/includes/zencoder.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/video_zencoder/includes/zencoder.inc b/plugins/video_zencoder/includes/zencoder.inc
index 1269505..fcf7e48 100644
--- a/plugins/video_zencoder/includes/zencoder.inc
+++ b/plugins/video_zencoder/includes/zencoder.inc
@@ -181,7 +181,7 @@ class video_zencoder_api {
*/
public function update($video) {
$result = db_query("UPDATE {video_zencoder} SET jobid = %d, outputid = %d, bucket='%s', filename='%s', filepath='%s', filemime='%s', filesize='%s', status=%d, completed=%d WHERE vid=%d",
- $video->jobid, $video->outputid, $video->bucket, $video->filename, $video->filepath, $video->filemime, $video->filesize, VIDEO_ZC_ACTIVE, time(), $video->vid);
+ $video->jobid, $video->outputid, $video->bucket, $video->filename, $video->filepath, $video->filemime, $video->filesize, VIDEO_ZC_ACTIVE, REQUEST_TIME, $video->vid);
return $result;
}