Django

Code

Changeset 2770

Show
Ignore:
Timestamp:
04/28/06 14:47:46 (2 years ago)
Author:
adrian
Message:

magic-removal: Fixed #1713 -- Fixed bug in docs/forms.txt

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/branches/magic-removal/docs/forms.txt

    r2765 r2770  
    163163            return render_to_response('places/errors.html', {'errors': errors}) 
    164164        else: 
    165             manipulator.do_html2python(request.POST
    166             new_place = manipulator.save(request.POST
     165            manipulator.do_html2python(new_data
     166            new_place = manipulator.save(new_data
    167167            return HttpResponse("Place created: %s" % new_place) 
    168168