adding missing echo statement
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/47f9f0f8 Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/47f9f0f8 Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/47f9f0f8 Branch: refs/heads/master Commit: 47f9f0f8d1f04f3b3b6b73d7ef1009e59f509cd8 Parents: 28f94f1 Author: Supun Nakandala <[email protected]> Authored: Wed Jul 1 01:24:58 2015 +0530 Committer: Supun Nakandala <[email protected]> Committed: Wed Jul 1 02:09:48 2015 +0530 ---------------------------------------------------------------------- app/views/partials/experiment-info.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/47f9f0f8/app/views/partials/experiment-info.blade.php ---------------------------------------------------------------------- diff --git a/app/views/partials/experiment-info.blade.php b/app/views/partials/experiment-info.blade.php index 5b69cfe..55cd2fb 100644 --- a/app/views/partials/experiment-info.blade.php +++ b/app/views/partials/experiment-info.blade.php @@ -40,7 +40,7 @@ <tr> <td><strong>Compute resource</strong></td> <td><?php if (!empty($expVal["computeResource"])) { - $expVal["computeResource"]->hostName; + echo $expVal["computeResource"]->hostName; } ?></td> </tr> <tr>
