Changeset 6568
- Timestamp:
- 12/18/07 18:35:59 (5 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/sfFormBuilderPlugin/lib/BasesfFormBuilder.class.php
r5992 r6568 696 696 if( !strstr($extra, 'multipart/form-data') ) 697 697 { 698 $this->setExtra( 'enctype="multipart/form-data"');698 $this->setExtra($this->getExtra() . ' enctype="multipart/form-data"'); 699 699 } 700 700 } plugins/sfFormBuilderPlugin/web/js/form_builder.js
r3721 r6568 11 11 { 12 12 var element = elements[j]; 13 14 if( element.value == '' )13 14 if( element.value == '' && element.type != 'hidden' ) 15 15 { 16 16 element.focus();