You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by ma...@apache.org on 2017/08/09 14:50:39 UTC

[40/50] airavata-php-gateway git commit: fixing minor bug in html

fixing minor bug in html


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/48e8f51a
Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/48e8f51a
Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/48e8f51a

Branch: refs/heads/dreg-gateway
Commit: 48e8f51a8281a5be05b1264b6ee97a0ec3b3e425
Parents: 3007041
Author: scnakandala <su...@gmail.com>
Authored: Tue Jul 25 13:36:08 2017 -0400
Committer: scnakandala <su...@gmail.com>
Committed: Tue Jul 25 13:36:08 2017 -0400

----------------------------------------------------------------------
 app/libraries/ExperimentUtilities.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/48e8f51a/app/libraries/ExperimentUtilities.php
----------------------------------------------------------------------
diff --git a/app/libraries/ExperimentUtilities.php b/app/libraries/ExperimentUtilities.php
index a4efc9d..a9d9b78 100755
--- a/app/libraries/ExperimentUtilities.php
+++ b/app/libraries/ExperimentUtilities.php
@@ -820,7 +820,7 @@ class ExperimentUtilities
                         $vals = explode(",", $input->value);
                         echo '<option value="'.$vals[0].'" selected>'.$vals[0] .'</option>';
                         for($i=1; $i<count(explode(",", $input->value)); $i++){
-                            echo '<option value="'.$vals[$i].'"'.$vals[$i] .'</option>';
+                            echo '<option value="'.$vals[$i].'">'.$vals[$i] .'</option>';
                         }
                         echo '</select>';
                     }else{
@@ -839,7 +839,7 @@ class ExperimentUtilities
                         $vals = explode(",", $input->value);
                         echo '<option value="'.$vals[0].'" selected>'.$vals[0] .'</option>';
                         for($i=1; $i<count(explode(",", $input->value)); $i++){
-                            echo '<option value="'.$vals[$i].'"'.$vals[$i] .'</option>';
+                            echo '<option value="'.$vals[$i].'">'.$vals[$i] .'</option>';
                         }
                         echo '</select>';
                     }else{