Index: trunk/extensions/SemanticForms/includes/SF_FormPrinter.php |
— | — | @@ -764,6 +764,12 @@ |
765 | 765 | if ( $input_type == 'datetime with timezone' ) { |
766 | 766 | $input_type = 'datetime'; |
767 | 767 | $field_args['include timezone'] = true; |
| 768 | + } elseif ( $input_type == 'text' || $input_type == 'textarea' ) { |
| 769 | + // Also for backwards compatibility, |
| 770 | + // in that once b/c goes away, |
| 771 | + // this will no longer be |
| 772 | + // necessary. |
| 773 | + $field_args['no autocomplete'] = true; |
768 | 774 | } |
769 | 775 | if ( $allow_multiple ) |
770 | 776 | $field_args['part_of_multiple'] = $allow_multiple; |