Return-Path: Delivered-To: apmail-ofbiz-commits-archive@www.apache.org Received: (qmail 89008 invoked from network); 1 Mar 2010 09:42:08 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 1 Mar 2010 09:42:08 -0000 Received: (qmail 19192 invoked by uid 500); 1 Mar 2010 09:42:08 -0000 Delivered-To: apmail-ofbiz-commits-archive@ofbiz.apache.org Received: (qmail 19148 invoked by uid 500); 1 Mar 2010 09:42:08 -0000 Mailing-List: contact commits-help@ofbiz.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ofbiz.apache.org Delivered-To: mailing list commits@ofbiz.apache.org Received: (qmail 19141 invoked by uid 99); 1 Mar 2010 09:42:08 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 01 Mar 2010 09:42:08 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 01 Mar 2010 09:42:08 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id BB92A23888FE; Mon, 1 Mar 2010 09:41:47 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r917435 - /ofbiz/trunk/applications/securityext/src/org/ofbiz/securityext/login/LoginEvents.java Date: Mon, 01 Mar 2010 09:41:47 -0000 To: commits@ofbiz.apache.org From: jleroux@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100301094147.BB92A23888FE@eris.apache.org> Author: jleroux Date: Mon Mar 1 09:41:47 2010 New Revision: 917435 URL: http://svn.apache.org/viewvc?rev=917435&view=rev Log: In eCommerce password Hint Message should be an event message, not error message. Thanks to Koon Sang at https://issues.apache.org/jira/browse/OFBIZ-3525 - OFBIZ-3525 Modified: ofbiz/trunk/applications/securityext/src/org/ofbiz/securityext/login/LoginEvents.java Modified: ofbiz/trunk/applications/securityext/src/org/ofbiz/securityext/login/LoginEvents.java URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/securityext/src/org/ofbiz/securityext/login/LoginEvents.java?rev=917435&r1=917434&r2=917435&view=diff ============================================================================== --- ofbiz/trunk/applications/securityext/src/org/ofbiz/securityext/login/LoginEvents.java (original) +++ ofbiz/trunk/applications/securityext/src/org/ofbiz/securityext/login/LoginEvents.java Mon Mar 1 09:41:47 2010 @@ -159,7 +159,7 @@ Map messageMap = UtilMisc.toMap("passwordHint", passwordHint); errMsg = UtilProperties.getMessage(resource, "loginevents.password_hint_is", messageMap, UtilHttp.getLocale(request)); - request.setAttribute("_ERROR_MESSAGE_", errMsg); + request.setAttribute("_EVENT_MESSAGE_", errMsg); return "success"; }