If you are using login engine in your app and plan adding created_by and updated_by magic fields, you'll probably have a problem during the login, since the engine tries to update the user object while no user is already loaded in the session.
To get around the problem, I just changed the user monitor like this
# this is line 25, by the way
if user and user.id
self[:updated_by] = user.id if respond_to?(:updated_by)
end
oh, by the way, a new engine is out: help engine; this should help managing context sensitive help...

Leave a comment