Skip to content

Commit 4c28c07

Browse files
committed
Merge branch 'hotfix-1.0.1'
2 parents fa6113c + 6051495 commit 4c28c07

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

os2web_adlib_api.module

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ function os2web_adlib_api_convert_to_pdf($fid, $docref = NULL) {
417417
'did' => $docref,
418418
'jobtype' => 0,
419419
);
420-
drupal_write_record('os2web_adlib_api_doc_files', $record);
420+
drupal_write_record('os2web_adlib_api_doc_files', $record, array('fid', 'jobtype'));
421421
if (ADLIB_TEST_FID) {
422422
error_log(basename(__FILE__) . ':' . __LINE__ . " jm@bellcom.dk: File queued for processing.");
423423
}
@@ -435,7 +435,7 @@ function os2web_adlib_api_convert_to_pdf($fid, $docref = NULL) {
435435
'did' => $docref,
436436
'job_id' => 'Complete',
437437
);
438-
drupal_write_record('os2web_adlib_api_doc_files', $record);
438+
drupal_write_record('os2web_adlib_api_doc_files', $record, array('fid', 'jobtype'));
439439
return FALSE;
440440
}
441441
}

0 commit comments

Comments
 (0)