Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 0CA07200B6B for ; Thu, 14 Jul 2016 22:16:04 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 0B452160A86; Thu, 14 Jul 2016 20:16:04 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 62D3E160A88 for ; Thu, 14 Jul 2016 22:16:03 +0200 (CEST) Received: (qmail 64984 invoked by uid 500); 14 Jul 2016 20:16:02 -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 64350 invoked by uid 99); 14 Jul 2016 20:16:02 -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; Thu, 14 Jul 2016 20:16:02 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 0CA0CED49A; Thu, 14 Jul 2016 20:16:02 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: smarru@apache.org To: commits@airavata.apache.org Date: Thu, 14 Jul 2016 20:16:11 -0000 Message-Id: <08adabb71f144643afa3d028ffb26828@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [11/17] airavata-php-gateway git commit: Syntax Fix archived-at: Thu, 14 Jul 2016 20:16:04 -0000 Syntax Fix 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/c751dfc1 Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/c751dfc1 Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/c751dfc1 Branch: refs/heads/master Commit: c751dfc18acaa245bdbc1005425bc08f4ae1ca32 Parents: 28649af Author: Nipurn Doshi Authored: Wed Jul 13 09:30:42 2016 -0700 Committer: Nipurn Doshi Committed: Wed Jul 13 09:30:42 2016 -0700 ---------------------------------------------------------------------- app/controllers/AccountController.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/c751dfc1/app/controllers/AccountController.php ---------------------------------------------------------------------- diff --git a/app/controllers/AccountController.php b/app/controllers/AccountController.php index 32ae4b0..2b20f32 100644 --- a/app/controllers/AccountController.php +++ b/app/controllers/AccountController.php @@ -311,11 +311,13 @@ class AccountController extends BaseController $userInfo["email"] = $userProfile["email"]; Session::put("new-gateway-provider", true); } + } $errors = array(); if( Session::has("errors")) $errors = Session::get("errors"); - return View::make("account/dashboard",array("message"=> implode( "," , $errors))); + + return View::make("account/dashboard",array("message"=> implode( "," , $errors) )); } public function resetPassword()