bug fix
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/06b8caeb Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/06b8caeb Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/06b8caeb Branch: refs/heads/master Commit: 06b8caebc82fc06e18f8ecd65aaf44a77105afb6 Parents: 76ed3c0 Author: Nipurn Doshi <[email protected]> Authored: Thu Mar 12 17:05:26 2015 -0400 Committer: Suresh Marru <[email protected]> Committed: Thu Apr 9 11:36:36 2015 -0400 ---------------------------------------------------------------------- app/libraries/utilities.php | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/06b8caeb/app/libraries/utilities.php ---------------------------------------------------------------------- diff --git a/app/libraries/utilities.php b/app/libraries/utilities.php index 1424f7c..1631bb5 100644 --- a/app/libraries/utilities.php +++ b/app/libraries/utilities.php @@ -1841,6 +1841,7 @@ public static function list_output_files($experiment, $expStatus) echo '<p>' . $output->name . ' : ' . '<a target="_blank" href="' . str_replace(Utilities::$experimentDataPathAbsolute, Constant::EXPERIMENT_DATA_ROOT, $output->value) . '">' . $outputPathArray[ sizeof( $outputPathArray) - 1] . ' <span class="glyphicon glyphicon-new-window"></span></a></p>'; + } elseif ($output->type == DataType::STRING) { echo '<p>' . $output->value . '</p>';
