Skip to content

Commit 97d6047

Browse files
committed
Fix HTML syntax in report.phtml error template
1 parent 6103b6b commit 97d6047

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
@@ -35,25 +35,25 @@
3535
</div>
3636
<div class="field lastname required">
3737
<label for="lastname" class="label">Last Name</label>
38-
<div class=control">
38+
<div class="control">
3939
<input type="text" name="lastname" id="lastname" value="<?php echo $this->postData['lastName'] ?>" title="Last Name" class="required-entry input-text" />
4040
</div>
4141
</div>
4242
<div class="field email required">
4343
<label for="email_address" class="label">Email Address</label>
44-
<div class=control">
44+
<div class="control">
4545
<input type="text" name="email" id="email_address" value="<?php echo $this->postData['email'] ?>" title="Email Address" class="validate-email required-entry input-text" />
4646
</div>
4747
</div>
4848
<div class="field telephone">
4949
<label for="telephone" class="label">Telephone</label>
50-
<div class=control">
50+
<div class="control">
5151
<input type="text" name="telephone" id="telephone" value="<?php echo $this->postData['telephone'] ?>" title="Telephone" class="input-text" />
5252
</div>
5353
</div>
5454
<div class="field comment">
5555
<label for="comment" class="label">Comment</label>
56-
<div class=control">
56+
<div class="control">
5757
<textarea name="comment" cols="5" rows="3" class="textarea"><?php echo $this->postData['comment'] ?></textarea>
5858
</div>
5959
</div>

0 commit comments

Comments
 (0)