Development

Changeset 10214

You must first sign up to be able to contribute.

Changeset 10214

Show
Ignore:
Timestamp:
07/10/08 23:10:36 (5 months ago)
Author:
Carl.Vondrick
Message:

1.1 forms book: fixed parse error when using a multipart form (closes #3953)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • doc/branches/1.1/forms_book/en/03-Forms-for-web-Designers.txt

    r9661 r10214  
    5454> 
    5555>     [php] 
    56 >     <Form action="<?php echo url_for('contact/index') ?>" method="POST" <?php $form->isMultipart() and echo 'enctype="multipart/form-data"' ?>> 
     56>     <Form action="<?php echo url_for('contact/index') ?>" method="POST" <?php $form->isMultipart() and print 'enctype="multipart/form-data"' ?>> 
    5757 
    5858The Prototype Template