Changes between Initial Version and Version 5 of Ticket #7038
- Timestamp:
- Jun 16, 2008, 3:44:48 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #7038
- Property Component Uncategorized → django.contrib.formtools
- Property Keywords hash failure added
-
Ticket #7038 – Description
initial v5 3 3 I was able to workaround (not fix) by overriding the security_hash method as follows: 4 4 5 {{{ 5 6 def security_hash(self, request, form): 6 7 … … 13 14 pickled = pickle.dumps(data, protocol=pickle.HIGHEST_PROTOCOL) 14 15 return md5.new(pickled).hexdigest() 16 }}} 15 17 16 18 The problem appears (to my untrained eye) to be in the line assigning the value of data where bf.data = False and thus gets assigned ''.