Repository: airavata-php-gateway Updated Branches: refs/heads/develop 40b625df9 -> 86e501fa3
fixing bug 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/86e501fa Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/86e501fa Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/86e501fa Branch: refs/heads/develop Commit: 86e501fa38193c79381ed0950e27ca1bdb24cc5b Parents: 40b625d Author: scnakandala <[email protected]> Authored: Tue Jul 5 17:47:37 2016 -0400 Committer: scnakandala <[email protected]> Committed: Tue Jul 5 17:47:37 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/86e501fa/app/libraries/ExperimentUtilities.php ---------------------------------------------------------------------- diff --git a/app/libraries/ExperimentUtilities.php b/app/libraries/ExperimentUtilities.php index 7dcfda0..7ef6e86 100644 --- a/app/libraries/ExperimentUtilities.php +++ b/app/libraries/ExperimentUtilities.php @@ -466,7 +466,7 @@ class ExperimentUtilities $dataProductModel->replicaLocations[] = $dataReplicationModel; $uri = Airavata::registerDataProduct(Session::get('authz-token'), $dataProductModel); - $uriList = $uriList + $uri + ","; + $uriList = $uriList . $uri . ","; } $uriList = substr($uriList, -1); $optInput = new InputDataObjectType();
