You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by sc...@apache.org on 2015/07/29 19:48:35 UTC

[03/50] [abbrv] airavata-php-gateway git commit: fixing AIRAVATA-1535

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/master
Commit: 16f26bd4712c43fb96ce9e42b1b5be774ad4600a
Parents: d8ed013
Author: Supun Nakandala <sc...@apache.org>
Authored: Thu Jul 16 19:07:45 2015 +0530
Committer: Supun Nakandala <sc...@apache.org>
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