diff options
| author | ilotterytea <iltsu@alright.party> | 2025-12-09 01:51:38 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2025-12-09 01:51:38 +0500 |
| commit | 64a9bfae4a659f38f33320e59004a1d1dd259a40 (patch) | |
| tree | 037ada7511f50fa78dff1c6645b984b327f77ce2 /404.php | |
| parent | 29477e67ede12347b153e2255325327374e1b073 (diff) | |
upd: replaced <?php echo with <?=
Diffstat (limited to '404.php')
| -rw-r--r-- | 404.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -15,7 +15,7 @@ $reason = str_safe($_GET["error_reason"] ?? "Not found", 200); <html> <head> - <title>(Error) <?php echo sprintf("%s - %s", $reason, CONFIG['instance']['name']) ?></title> + <title>(Error) <?= sprintf("%s - %s", $reason, CONFIG['instance']['name']) ?></title> <link rel="stylesheet" href="/static/style.css"> <link rel="shortcut icon" href="/static/favicon.ico" type="image/x-icon"> </head> @@ -25,7 +25,7 @@ $reason = str_safe($_GET["error_reason"] ?? "Not found", 200); <div class="wrapper"> <?php html_navigation_bar() ?> <section class="content"> - <h1 style="color: red;"><?php echo $reason ?></h1> + <h1 style="color: red;"><?= $reason ?></h1> <a href="/">[ Back to home ]</a> </section> |
