Repository: airavata-php-gateway Updated Branches: refs/heads/develop 33cfc5b38 -> 9cab0fe2c
fixing ui bug 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/9cab0fe2 Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/9cab0fe2 Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/9cab0fe2 Branch: refs/heads/develop Commit: 9cab0fe2c51a2404bc435ea2f8a2716ab205455f Parents: 33cfc5b Author: scnakandala <[email protected]> Authored: Mon May 2 18:04:34 2016 -0400 Committer: scnakandala <[email protected]> Committed: Mon May 2 18:04:34 2016 -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/9cab0fe2/app/controllers/AccountController.php ---------------------------------------------------------------------- diff --git a/app/controllers/AccountController.php b/app/controllers/AccountController.php index 6f47048..2cc5a11 100644 --- a/app/controllers/AccountController.php +++ b/app/controllers/AccountController.php @@ -89,7 +89,7 @@ class AccountController extends BaseController // }else{ // return View::make('account/login'); // } - if(CommonUtilities::verify_login()){ + if(CommonUtilities::id_in_session()){ return Redirect::to("home"); }else return View::make('account/login');
