summaryrefslogtreecommitdiff
path: root/404.php
diff options
context:
space:
mode:
Diffstat (limited to '404.php')
-rw-r--r--404.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/404.php b/404.php
index e380a70..7741541 100644
--- a/404.php
+++ b/404.php
@@ -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>