Changes between Initial Version and Version 5 of Ticket #7038


Ignore:
Timestamp:
Jun 16, 2008, 3:44:48 PM (16 years ago)
Author:
Ramiro Morales
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #7038

    • Property Component Uncategorizeddjango.contrib.formtools
    • Property Keywords hash failure added
  • Ticket #7038 – Description

    initial v5  
    33I was able to workaround (not fix) by overriding the security_hash method as follows:
    44
     5{{{
    56    def security_hash(self, request, form):
    67
     
    1314        pickled = pickle.dumps(data, protocol=pickle.HIGHEST_PROTOCOL)
    1415        return md5.new(pickled).hexdigest()
     16}}}
    1517
    1618The problem appears (to my untrained eye) to be in the line assigning the value of data where bf.data = False and thus gets assigned ''.
Back to Top