Bug 14973: Remove double textarea for notes

Certainly a bad merge conflict resolution (I am certainly the one to
blame).
However I do not understand where this "note" variable come from.

Signed-off-by: Lisette Scheer <lisetteslatah@gmail.com>
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
This commit is contained in:
Jonathan Druart 2019-10-16 15:54:39 +02:00 committed by Martin Renvoize
parent d6400a7024
commit 8111e4c116
Signed by: martin.renvoize
GPG key ID: 422B469130441A0F

View file

@ -187,11 +187,10 @@
<li>
[% IF ( note_required ) %]
<label for="note" class="required">Notes:</label>
<textarea name="note" id="note" rows="5" cols="40" required="required"></textarea>
<textarea name="note" id="note" rows="5" cols="40" required="required">[% note %]</textarea>
<span class="required">Required</span>
[% ELSE %]
<label for="note">Notes:</label>
<textarea name="note" id="note" rows="5" cols="40"></textarea>
<textarea name="note" id="note" rows="5" cols="40">[% note %]</textarea>
[% END %]
</li>