Repository: airavata-php-gateway Updated Branches: refs/heads/develop d05a9624b -> e71d6674f
fixing typo 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/e71d6674 Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/e71d6674 Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/e71d6674 Branch: refs/heads/develop Commit: e71d6674f0f1bd515eb4f23b27a094fdc39c3001 Parents: d05a962 Author: scnakandala <[email protected]> Authored: Fri Aug 12 13:01:59 2016 -0400 Committer: scnakandala <[email protected]> Committed: Fri Aug 12 13:01:59 2016 -0400 ---------------------------------------------------------------------- app/libraries/AdminUtilities.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/e71d6674/app/libraries/AdminUtilities.php ---------------------------------------------------------------------- diff --git a/app/libraries/AdminUtilities.php b/app/libraries/AdminUtilities.php index 4d90fbf..55cff65 100644 --- a/app/libraries/AdminUtilities.php +++ b/app/libraries/AdminUtilities.php @@ -35,7 +35,7 @@ class AdminUtilities $gateway->emailAddress = $inputs["email-address"]; $gateway->gatewayAcronym = $inputs["gateway-acronym"]; if( strpos($inputs["gateway-url"], "//") != false) - $input["gateway-url"] = substr( $inputs["gateway-url"], 1 + strpos($inputs["gateway-url"], "//")); + $inputs["gateway-url"] = substr( $inputs["gateway-url"], 1 + strpos($inputs["gateway-url"], "//")); $gateway->gatewayURL = $inputs["gateway-url"]; $gateway->gatewayAdminFirstName = $inputs["admin-firstname"]; $gateway->gatewayAdminLastName = $inputs["admin-lastname"];
