Skip to content

Commit 583b1f0

Browse files
author
Stanislav Idolov
authored
ENGCOM-1654: Fix HTML syntax in report.phtml error template #15454
2 parents 588a8b0 + c25602d commit 583b1f0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pub/errors/default/report.phtml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,25 +36,25 @@
3636
</div>
3737
<div class="field lastname required">
3838
<label for="lastname" class="label">Last Name</label>
39-
<div class=control">
39+
<div class="control">
4040
<input type="text" name="lastname" id="lastname" value="<?= $this->postData['lastName'] ?>" title="Last Name" class="required-entry input-text" />
4141
</div>
4242
</div>
4343
<div class="field email required">
4444
<label for="email_address" class="label">Email Address</label>
45-
<div class=control">
45+
<div class="control">
4646
<input type="text" name="email" id="email_address" value="<?= $this->postData['email'] ?>" title="Email Address" class="validate-email required-entry input-text" />
4747
</div>
4848
</div>
4949
<div class="field telephone">
5050
<label for="telephone" class="label">Telephone</label>
51-
<div class=control">
51+
<div class="control">
5252
<input type="text" name="telephone" id="telephone" value="<?= $this->postData['telephone'] ?>" title="Telephone" class="input-text" />
5353
</div>
5454
</div>
5555
<div class="field comment">
5656
<label for="comment" class="label">Comment</label>
57-
<div class=control">
57+
<div class="control">
5858
<textarea name="comment" cols="5" rows="3" class="textarea"><?= $this->postData['comment'] ?></textarea>
5959
</div>
6060
</div>

0 commit comments

Comments
 (0)