Repository: airavata-php-gateway Updated Branches: refs/heads/develop b31ba8ac0 -> 301b8be45
fixing wrong parameter issue Project: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/repo Commit: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/commit/301b8be4 Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/301b8be4 Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/301b8be4 Branch: refs/heads/develop Commit: 301b8be4599fb750656cc889def05f5234a5e2b1 Parents: b31ba8a Author: scnakandala <[email protected]> Authored: Wed Mar 23 14:03:16 2016 -0400 Committer: scnakandala <[email protected]> Committed: Wed Mar 23 14:03:16 2016 -0400 ---------------------------------------------------------------------- app/libraries/ExperimentUtilities.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/301b8be4/app/libraries/ExperimentUtilities.php ---------------------------------------------------------------------- diff --git a/app/libraries/ExperimentUtilities.php b/app/libraries/ExperimentUtilities.php index 06b90a4..3382341 100644 --- a/app/libraries/ExperimentUtilities.php +++ b/app/libraries/ExperimentUtilities.php @@ -319,7 +319,7 @@ class ExperimentUtilities $dataReplicationModel->filePath = $filePath; $dataProductModel->replicaLocations[] = $dataReplicationModel; - $uri = Airavata::registerDataProduct(Session::get('authz-token'), $dataReplicationModel); + $uri = Airavata::registerDataProduct(Session::get('authz-token'), $dataProductModel); $experimentInput->value = $uri; } else { CommonUtilities::print_error_message('I cannot accept this input type yet!');
