Repository: airavata-php-gateway Updated Branches: refs/heads/master ae9ed4a38 -> 99d146ade
hiding experiment has failed message in PGA experiment outputs list 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/99d146ad Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/99d146ad Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/99d146ad Branch: refs/heads/master Commit: 99d146adecf8635b607b3bd30ceba64bd44b17cf Parents: ae9ed4a Author: scnakandala <[email protected]> Authored: Mon Jan 11 10:36:22 2016 -0500 Committer: scnakandala <[email protected]> Committed: Mon Jan 11 10:36:22 2016 -0500 ---------------------------------------------------------------------- app/libraries/ExperimentUtilities.php | 4 ++-- app/views/partials/experiment-info.blade.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/99d146ad/app/libraries/ExperimentUtilities.php ---------------------------------------------------------------------- diff --git a/app/libraries/ExperimentUtilities.php b/app/libraries/ExperimentUtilities.php index f19027f..8d428b4 100644 --- a/app/libraries/ExperimentUtilities.php +++ b/app/libraries/ExperimentUtilities.php @@ -663,8 +663,8 @@ class ExperimentUtilities $outputPathArray[ count($outputPathArray)-1] . '">' . $outputPathArray[sizeof($outputPathArray) - 1] . ' <span class="glyphicon glyphicon-new-window"></span></a></p>'; } - else - echo 'Output paths are not correctly defined for : <br/>' . $output->name . '<br/><br/> Please report this issue to the admin<br/><br/>'; +// else +// echo 'Output paths are not correctly defined for : <br/>' . $output->name . '<br/><br/> Please report this issue to the admin<br/><br/>'; } elseif ($output->type == DataType::STRING) { http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/99d146ad/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 b039371..bef7c83 100644 --- a/app/views/partials/experiment-info.blade.php +++ b/app/views/partials/experiment-info.blade.php @@ -128,7 +128,7 @@ <td><?php ExperimentUtilities::list_output_files($experiment->experimentOutputs, $experiment->experimentStatus->state, false); ?></td> </tr> <!-- an experiment is editable only when it has not failed. otherwise, show errors. --> - @if( $expVal["editable"] == false) +{{-- @if( $expVal["editable"] == false)--}} <tr> <td><strong>Errors</strong></td> <td> @@ -139,7 +139,7 @@ @endif </td> </tr> - @endif + {{--@endif--}} </table>
