Repository: airavata-php-gateway Updated Branches: refs/heads/master 7889c25e8 -> dff64c0b9
fixing attribute name 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/dff64c0b Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/dff64c0b Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/dff64c0b Branch: refs/heads/master Commit: dff64c0b94a08ee913bd096bec0d59ed9716676f Parents: 7889c25 Author: Supun Nakandala <[email protected]> Authored: Sun Aug 30 19:59:38 2015 +0530 Committer: Supun Nakandala <[email protected]> Committed: Sun Aug 30 19:59:38 2015 +0530 ---------------------------------------------------------------------- app/libraries/AdminUtilities.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/dff64c0b/app/libraries/AdminUtilities.php ---------------------------------------------------------------------- diff --git a/app/libraries/AdminUtilities.php b/app/libraries/AdminUtilities.php index be83d1f..1e99090 100644 --- a/app/libraries/AdminUtilities.php +++ b/app/libraries/AdminUtilities.php @@ -61,7 +61,7 @@ class AdminUtilities $expContainer = array(); $expNum = 0; foreach ($experiments as $experiment) { - $expValue = ExperimentUtilities::get_experiment_summary_values($experiment, ProjectUtilities::get_project($experiment->projectID), true); + $expValue = ExperimentUtilities::get_experiment_summary_values($experiment, ProjectUtilities::get_project($experiment->projectId), true); $expContainer[$expNum]['experiment'] = $experiment; $expValue["editable"] = false; $expContainer[$expNum]['expValue'] = $expValue;
