You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2013/04/20 11:16:03 UTC

svn commit: r1470134 - /ofbiz/trunk/framework/security/entitydef/entitymodel.xml

Author: jleroux
Date: Sat Apr 20 09:16:02 2013
New Revision: 1470134

URL: http://svn.apache.org/r1470134
Log:
Fix a minor issue "Default UserLogin screen is throwing an exception when password is incorrect and its size more then 16 chars." reported by Sumit Pandit at https://issues.apache.org/jira/browse/OFBIZ-5001

I simply changed UserLoginHistory.passwordUsed field from short-varchar to long-varchar

Modified:
    ofbiz/trunk/framework/security/entitydef/entitymodel.xml

Modified: ofbiz/trunk/framework/security/entitydef/entitymodel.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/security/entitydef/entitymodel.xml?rev=1470134&r1=1470133&r2=1470134&view=diff
==============================================================================
--- ofbiz/trunk/framework/security/entitydef/entitymodel.xml (original)
+++ ofbiz/trunk/framework/security/entitydef/entitymodel.xml Sat Apr 20 09:16:02 2013
@@ -103,7 +103,7 @@ under the License.
       <field name="visitId" type="id"></field>
       <field name="fromDate" type="date-time"></field>
       <field name="thruDate" type="date-time"></field>
-      <field name="passwordUsed" type="short-varchar" encrypt="true"></field>
+      <field name="passwordUsed" type="long-varchar" encrypt="true"></field>
       <field name="successfulLogin" type="indicator"></field>
       <prim-key field="userLoginId"/>
       <prim-key field="fromDate"/>