Adding :persistp nil to the form options seems to have done it. Thanks. I knew it had to be something so simple, that I'd feel stupid as soon as I knew what it was... :)
-Michael On Wed, Sep 30, 2009 at 2:59 PM, Leslie P. Polzer <[email protected]>wrote: > > On Sep 30, 9:50 pm, Michael McDermott <[email protected]> > wrote: > > Full backtrace, from Weblocks' error page is here: > > http://paste.lisp.org/+1VVFWeblocks throws the error after the > > login form is submitted. > > You need to specify :persistp nil for your login view. Cf. the default > login view: > > (defview default-login-view (:type form :persistp nil > :buttons '((:submit . "Login") :cancel) > :caption "Login" > :focusp t) > (email :requiredp t) > (password :requiredp t > :present-as password > :writer (lambda (pwd obj) > (setf (slot-value obj 'password) > (hash-password pwd))))) > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "weblocks" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/weblocks?hl=en -~----------~----~----~----~------~----~------~--~---
