Greg Buchanan wrote:
David, I saw this entry from the mailing list.
I appreciate how busy you are with J2 and other stuff, so any help or
pointers you can provide me are greatly appreciated.
Can you send me the source code to the module(s) you changed so that I can
replicate them ? The 1.6 distribution also has a similar problem with the
"last login" date that I need to fix.
With which database?
The code below is IN the final 1.6 release.
Often, I see this problem when the wrong database bindings jar is used.
See instructions here for selecting another database:

http://portals.apache.org/jetspeed-1/database.html

   +        if (user.isNew())
   +        {
   +            Date created = user.getCreateDate();
   +            if (created == null)
   +            {
   +                created = new Date();
   +            }
   +            criteria.add( "TURBINE_USER.CREATED", created);
   +            criteria.add( "TURBINE_USER.PASSWORD_CHANGED", created);
   +         }

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to