diff options
author | Naglfar <naglfar@tilde.institute> | 2021-01-11 21:36:00 +0100 |
---|---|---|
committer | Naglfar <naglfar@tilde.institute> | 2021-01-11 21:36:00 +0100 |
commit | 1efc40bb5b5d5f902f283c769a824d7c8661e306 (patch) | |
tree | 73508631196ef7575df07e18600821d6072d6f5f | |
parent | 2c17c9f18c30e971d0f874c2d83e581a864a524e (diff) | |
download | MightyWVMS-1efc40bb5b5d5f902f283c769a824d7c8661e306.tar.gz |
Include title in printf
-rw-r--r-- | divs/head.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/divs/head.php b/divs/head.php index 61f6c42..8f404fb 100644 --- a/divs/head.php +++ b/divs/head.php @@ -1,5 +1,5 @@ <head> - <title><?php printf("%s - %s", $vdata[2], $wsdata[0]) ?></title> + <?php printf("<title>%s - %s</title>", $vdata[2], $wsdata[0]) ?> <meta name="description" content="<?php echo $wsdata[6] ?>" /> <meta name="viewport" content="width=device-width,initial-scale=1.0"> <link rel="stylesheet" href="/theme/body-wrapper.css" type="text/css"> |