Skip to content

Commit 9dda86d

Browse files
committed
style: fix sytle
For consistency.
1 parent 4a10c99 commit 9dda86d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/Views/errors/html/error_404.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
<?= nl2br(esc($message)) ?>
7878
<?php else : ?>
7979
<?= lang('Errors.sorryCannotFind') ?>
80-
<?php endif ?>
80+
<?php endif; ?>
8181
</p>
8282
</div>
8383
</body>

app/Views/errors/html/error_exception.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
<li>
6868
<p>
6969
<!-- Trace info -->
70-
<?php if (isset($row['file']) && is_file($row['file'])) :?>
70+
<?php if (isset($row['file']) && is_file($row['file'])) : ?>
7171
<?php
7272
if (isset($row['function']) && in_array($row['function'], ['include', 'include_once', 'require', 'require_once'], true)) {
7373
echo esc($row['function'] . ' ' . clean_path($row['file']));

0 commit comments

Comments
 (0)