Repository: airavata-php-gateway Updated Branches: refs/heads/master 4f3ddac65 -> ebfb50aba
fixing redirection issue when using OAuth 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/ebfb50ab Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/ebfb50ab Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/ebfb50ab Branch: refs/heads/master Commit: ebfb50aba5ad5de42fceca1e82cf9403e8bbd058 Parents: 4f3ddac Author: scnakandala <[email protected]> Authored: Mon Oct 12 23:28:42 2015 -0400 Committer: scnakandala <[email protected]> Committed: Mon Oct 12 23:28:42 2015 -0400 ---------------------------------------------------------------------- app/controllers/AccountController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/ebfb50ab/app/controllers/AccountController.php ---------------------------------------------------------------------- diff --git a/app/controllers/AccountController.php b/app/controllers/AccountController.php index 1aca7bd..19eef2c 100755 --- a/app/controllers/AccountController.php +++ b/app/controllers/AccountController.php @@ -266,7 +266,7 @@ class AccountController extends BaseController try{ $result = WSIS::confirmUserRegistration($username, $confirmation, Config::get('pga_config.wsis')['tenant-domain']); if($result){ - return View::make("account/login"); + return Redirect::to("login"); }else{ return View::make("home"); }
