Ticket #2975: dateparse.patch

File dateparse.patch, 567 bytes (added by wangbin@…, 17 years ago)
  • django/contrib/admin/media/js/dateparse.js

     
    169169        handler: function(bits) {
    170170            var d = new Date();
    171171            d.setYear(parseInt(bits[1]));
     172            d.setMonth(parseInt(bits[2], 10) - 1);
    172173            d.setDate(parseInt(bits[3], 10));
    173             d.setMonth(parseInt(bits[2], 10) - 1);
    174174            return d;
    175175        }
    176176    },
Back to Top