Changes between Version 94 and Version 95 of BackwardsIncompatibleChanges
- Timestamp:
- May 14, 2007, 11:28:17 AM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BackwardsIncompatibleChanges
v94 v95 173 173 == Newforms: clean_data changed to cleaned_data == 174 174 175 If you are accessing form data that has been cleaned in newforms, you could previously use the {{{clean_data}} attribute on the form. In [5237], this was changed to {{{cleaned_data}}} to avoid a name-clash (see [5231] for why the change was necessary).175 If you are accessing form data that has been cleaned in newforms, you could previously use the {{{clean_data}}} attribute on the form. In [5237], this was changed to {{{cleaned_data}}} to avoid a name-clash (see [5231] for why the change was necessary). 176 176 177 177 You will need to do a search-and-replace in your form code and replace clean_data with cleaned_data everywhere.