Ticket #9772: t9772-r9602.diff

File t9772-r9602.diff, 801 bytes (added by Ramiro Morales, 16 years ago)
  • docs/ref/forms/fields.txt

    diff --git a/docs/ref/forms/fields.txt b/docs/ref/forms/fields.txt
    a b  
    520520documentation <topics-http-file-uploads>`.
    521521
    522522When you use a ``FileField`` in a form, you must also remember to
    523 :ref:`bind the file data to the form <topics-file-uploads>`.
     523:ref:`bind the file data to the form <binding-uploaded-files>`.
    524524
    525525``FilePathField``
    526526~~~~~~~~~~~~~~~~~
     
    587587Using an ImageField requires that the `Python Imaging Library`_ is installed.
    588588
    589589When you use an ``ImageField`` on a form, you must also remember to
    590 :ref:`bind the file data to the form <topics-file-uploads>`.
     590:ref:`bind the file data to the form <binding-uploaded-files>`.
    591591
    592592.. _Python Imaging Library: http://www.pythonware.com/products/pil/
    593593
Back to Top