Return-Path: X-Original-To: apmail-airavata-commits-archive@www.apache.org Delivered-To: apmail-airavata-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 1269D186BC for ; Tue, 16 Feb 2016 18:07:14 +0000 (UTC) Received: (qmail 67442 invoked by uid 500); 16 Feb 2016 18:07:14 -0000 Delivered-To: apmail-airavata-commits-archive@airavata.apache.org Received: (qmail 67399 invoked by uid 500); 16 Feb 2016 18:07:14 -0000 Mailing-List: contact commits-help@airavata.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@airavata.apache.org Delivered-To: mailing list commits@airavata.apache.org Received: (qmail 67390 invoked by uid 99); 16 Feb 2016 18:07:13 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Feb 2016 18:07:13 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id D36EAE0211; Tue, 16 Feb 2016 18:07:13 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ndoshi@apache.org To: commits@airavata.apache.org Message-Id: <23e840ab05634d7ba815a21530875bdf@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: airavata-php-gateway git commit: Correcting New users redirect. Date: Tue, 16 Feb 2016 18:07:13 +0000 (UTC) Repository: airavata-php-gateway Updated Branches: refs/heads/develop 98760bc34 -> e1912971d Correcting New users redirect. 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/e1912971 Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/e1912971 Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/e1912971 Branch: refs/heads/develop Commit: e1912971d13d6d73c9cc4dfbc70c2e6ca56803f8 Parents: 98760bc Author: Nipurn Doshi Authored: Tue Feb 16 13:06:41 2016 -0500 Committer: Nipurn Doshi Committed: Tue Feb 16 13:06:41 2016 -0500 ---------------------------------------------------------------------- app/controllers/AccountController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/e1912971/app/controllers/AccountController.php ---------------------------------------------------------------------- diff --git a/app/controllers/AccountController.php b/app/controllers/AccountController.php index d1592f4..f05e360 100755 --- a/app/controllers/AccountController.php +++ b/app/controllers/AccountController.php @@ -158,7 +158,7 @@ class AccountController extends BaseController if(Session::get("admin") || Session::get("admin-read-only")){ return Redirect::to("admin/dashboard"); }else{ - return Redirect::to("home"); + return Redirect::to("account/dashboard"); } }