diff options
author | Minteck <contact@minteck.org> | 2022-04-05 20:05:39 +0200 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2022-04-05 20:06:03 +0200 |
commit | f88ff9d593b1e2d0259abfab62a27f97856dde7c (patch) | |
tree | f2e2b3ae3470fc194952c8185915722c68110a87 /includes | |
parent | cbe55eab7a2c45e736ed6b31b7445798fb38949e (diff) | |
download | cloudsdale-f88ff9d593b1e2d0259abfab62a27f97856dde7c.tar.gz cloudsdale-f88ff9d593b1e2d0259abfab62a27f97856dde7c.tar.bz2 cloudsdale-f88ff9d593b1e2d0259abfab62a27f97856dde7c.zip |
Fix $title not working properly
Diffstat (limited to 'includes')
-rw-r--r-- | includes/gui/header.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/includes/gui/header.php b/includes/gui/header.php index 9595c43..82f2ebb 100644 --- a/includes/gui/header.php +++ b/includes/gui/header.php @@ -2,7 +2,12 @@ <html lang="en"> <head> <meta charset="UTF-8"> - <title>Cloudburst System</title> + <title> + <?php if (isset($title)): ?> + <?= $title ?> | + <?php endif; ?> + Cloudburst System + </title> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="/assets/css/main.css"> |