Changes between Version 94 and Version 95 of BackwardsIncompatibleChanges


Ignore:
Timestamp:
May 14, 2007, 11:28:17 AM (17 years ago)
Author:
Malcolm Tredinnick
Comment:

Formatting typo fix.

Legend:

Unmodified
Added
Removed
Modified
  • BackwardsIncompatibleChanges

    v94 v95  
    173173== Newforms: clean_data changed to cleaned_data ==
    174174
    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).
     175If 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).
    176176
    177177You will need to do a search-and-replace in your form code and replace clean_data with cleaned_data everywhere.
Back to Top