fixing AIRAVATA-1535
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/16f26bd4 Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/16f26bd4 Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/16f26bd4 Branch: refs/heads/0.15-release-branch Commit: 16f26bd4712c43fb96ce9e42b1b5be774ad4600a Parents: d8ed013 Author: Supun Nakandala <[email protected]> Authored: Thu Jul 16 19:07:45 2015 +0530 Committer: Supun Nakandala <[email protected]> Committed: Thu Jul 16 19:07:45 2015 +0530 ---------------------------------------------------------------------- app/views/resource/edit.blade.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/16f26bd4/app/views/resource/edit.blade.php ---------------------------------------------------------------------- diff --git a/app/views/resource/edit.blade.php b/app/views/resource/edit.blade.php index 6937fef..54d57ea 100644 --- a/app/views/resource/edit.blade.php +++ b/app/views/resource/edit.blade.php @@ -518,7 +518,8 @@ <select name="dataMovementProtocol" class="form-control selected-data-movement-protocol"> <option></option> @foreach( $dataMovementProtocols as $index => $dmp) - @if( ! in_array( $index, $addedDMI)) + //GridFTP is not supported in Airavata backend. Therefore commenting out from UI + @if( ! in_array( $index, $addedDMI) && $dmp!="GridFTP") <option value="{{ $index }}">{{ $dmp }}</option> @endif @endforeach
