Skip to content

Commit

Permalink
Merge pull request #155 from tripal/dataset_id-id_error
Browse files Browse the repository at this point in the history
Switch dataset_id to id to recognize proper id
  • Loading branch information
spficklin authored Jan 10, 2020
2 parents e7481ee + 4dafe52 commit 0eaa0c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions includes/tripal_galaxy.webform.inc
Original file line number Diff line number Diff line change
Expand Up @@ -1296,11 +1296,11 @@ function tripal_galaxy_invoke_webform_submission($sid, $job = NULL) {
foreach ($history_contents as $hcontent) {
if ($hcontent['name'] == $file['name']) {
$value = [
'id' => $hcontent['dataset_id'],
'id' => $hcontent['id'],
'src' => 'hda',
];
$input_datasets[$step_index] = [
'id' => $hcontent['dataset_id'],
'id' => $hcontent['id'],
'src' => 'hda',
];
}
Expand Down

0 comments on commit 0eaa0c1

Please sign in to comment.