Escaped quote on field values.
authorAndrea Zagli <azagli@libero.it>
Sat, 4 Mar 2023 09:15:04 +0000 (10:15 +0100)
committerAndrea Zagli <azagli@libero.it>
Sat, 4 Mar 2023 09:15:04 +0000 (10:15 +0100)
src/fields.rs

index 45a0422c4740520653009a9ce3c9ca6d81c0143c..20a138df1138462fdcc51459a5f52cd162625ad5 100644 (file)
@@ -120,7 +120,7 @@ impl FieldText {
 
                match f.field.tmpl.add_raw_template("field", r#"{% if label %}<div class="mb-3">
  <label for="{{ name }}" class="form-label">{{ label }}</label>{% endif %}
- <input type="text" class="form-control{% if help %} is-invalid{% endif %}" name="{{ name }}" id="{{ name }}" {% if value %} value="{{ value }}" {% endif %} {% if disabled %} readonly {% endif %} {% if maxlen > 0 %}maxlength="{{ maxlen }}"{% endif %} {% if invisible %}style="display: none;"{% endif %}/>
+ <input type="text" class="form-control{% if help %} is-invalid{% endif %}" name="{{ name }}" id="{{ name }}" {% if value %} value="{{ value | replace(from='"', to="&quot;") }}" {% endif %} {% if disabled %} readonly {% endif %} {% if maxlen > 0 %}maxlength="{{ maxlen }}"{% endif %} {% if invisible %}style="display: none;"{% endif %}/>
  {% if help %}<div id="helpBox_{{ name }}_" class="invalid-feedback">{{ help }}</div>{% endif %}
  {% if label %}</div>{% endif %}"#) {
 Err(e) => { println!("{:?}", e) },
@@ -225,7 +225,7 @@ impl FieldTextArea {
                match f.field.tmpl.add_raw_template("field", r#"{% if label %}<div class="mb-3">
  <label for="{{ name }}" class="form-label">{{ label }}</label>{% endif %}
  <textarea class="form-control{%if help %} is-invalid{% endif %}" {% if maxlen > 0 %}maxlength="{{ maxlen }}"{% endif %}
- name="{{ name }}" id="{{ name }}" rows="{{ rows }}">{{ value }}</textarea>
+ name="{{ name }}" id="{{ name }}" rows="{{ rows }}">{{ value | replace(from='"', to="&quot;") }}</textarea>
  {% if help %}<div id="helpBox_{{ name }}_" class="invalid-feedback">{{ help }}</div>{% endif %}
  {% if label %}</div>{% endif %}"#) {
 Err(e) => { println!("{:?}", e) },