Changeset 8215 for django/branches/gis/django/contrib/comments
- Timestamp:
- 08/05/08 12:15:33 (4 months ago)
- Files:
-
- django/branches/gis (modified) (1 prop)
- django/branches/gis/django/contrib/comments/models.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/gis
- Property svnmerge-integrated changed from /django/trunk:1-7978 to /django/trunk:1-8214
django/branches/gis/django/contrib/comments/models.py
r7979 r8215 30 30 validate that submitted form options have not been tampered-with. 31 31 """ 32 import md533 return md5 .new(options + photo_options + rating_options + target + settings.SECRET_KEY).hexdigest()32 from django.utils.hashcompat import md5_constructor 33 return md5_constructor(options + photo_options + rating_options + target + settings.SECRET_KEY).hexdigest() 34 34 35 35 def get_rating_options(self, rating_string):
