diff options
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> |
