File tree Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -806,7 +806,9 @@ used the ``form_row`` helper:
806
806
{{ form_widget(form.dueDate) }}
807
807
</div>
808
808
809
- <input type="submit" />
809
+ <div>
810
+ {{ form_widget(form.save) }}
811
+ </div>
810
812
811
813
{{ form_end(form) }}
812
814
@@ -828,7 +830,9 @@ used the ``form_row`` helper:
828
830
<?php echo $view['form']->widget($form['dueDate']) ?>
829
831
</div>
830
832
831
- <input type="submit" />
833
+ <div>
834
+ <?php echo $view['form']->widget($form['save']) ?>
835
+ </div>
832
836
833
837
<?php echo $view['form']->end($form) ?>
834
838
Original file line number Diff line number Diff line change @@ -107,6 +107,14 @@ to and from addresses and the subject.
107
107
You can combine these handlers with other handlers so that the errors still
108
108
get logged on the server as well as the emails being sent:
109
109
110
+ .. caution ::
111
+
112
+ The default spool setting for swiftmailer is set to ``memory ``, which
113
+ means that emails are sent at the very end of the request. However, this
114
+ does not work with buffered logs at the moment. In order to enable emailing
115
+ logs per the example below, you must comment out the ``spool: { type: memory } ``
116
+ line in the ``config.yml `` file.
117
+
110
118
.. configuration-block ::
111
119
112
120
.. code-block :: yaml
Original file line number Diff line number Diff line change @@ -98,4 +98,4 @@ message
98
98
99
99
**type **: ``string `` **default **: ``This value should not be equal to {{ compared_value }} ``
100
100
101
- This is the message that will be shown if the value is not equal.
101
+ This is the message that will be shown if the value is equal.
You can’t perform that action at this time.
0 commit comments