Changes between Version 2 and Version 4 of Ticket #27223


Ignore:
Timestamp:
Sep 20, 2016, 8:26:02 AM (8 years ago)
Author:
Dariusz Paluch
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #27223 – Description

    v2 v4  
    1 Yes, this patch fix this.
    2 Thank you, and I waiting for 1.10.2 shortly
     1> https://github.com/django/django/commit/4bc6b939944183533ae74791d21282e613f63a96
     2> That change in construct_instance function makes a bug with custom
     3> full_clean validation for *RangeField like fields
     4>
     5> RangeField values are send in POST method by two key=value pair:
     6> my_range_0=1&my_range_1=9
     7> that there is not my_range field in POST so field value is skipped and
     8> not copied to instance.
Back to Top