Index: trunk/extensions/SemanticForms/includes/SF_FormPrinter.php |
— | — | @@ -807,7 +807,7 @@ |
808 | 808 | $field_query_val = $template_instance_query_values[$field_name]; |
809 | 809 | } |
810 | 810 | // Escaping of quotes is necessary. |
811 | | - $field_query_val = htmlentities( $field_query_val ); |
| 811 | + $field_query_val = str_replace( '"', '"', $field_query_val ); |
812 | 812 | if ( $form_submitted || ( ! empty( $field_query_val ) && ! is_array( $field_query_val ) ) ) { |
813 | 813 | $cur_value = $field_query_val; |
814 | 814 | } |