aboutsummaryrefslogtreecommitdiff
path: root/video.module
diff options
context:
space:
mode:
Diffstat (limited to 'video.module')
-rw-r--r--video.module9
1 files changed, 5 insertions, 4 deletions
diff --git a/video.module b/video.module
index dc67235..1a374fa 100644
--- a/video.module
+++ b/video.module
@@ -798,10 +798,11 @@ function video_update($node) {
else {
// set the required properties of the video node
video_presave($node);
- // kjh: make sure to save the encoded_fid
- if ($node->new_video_upload_file_fid == 0 && $node->video_encoded_fid) {
- $node->serial_data['video_encoded_fid'] = $node->video_encoded_fid;
- }
+
+ // GMM: make sure to save the encoded_fid
+ if (!isset($node->serial_data['video_encoded_fid']) && $node->video_encoded_fid) {
+ $node->serial_data['video_encoded_fid'] = $node->video_encoded_fid;
+ }
$node->serialized_data = serialize($node->serial_data); //Serialize the data for insertion into the database.