We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 03fdedf + ffc5e5e commit 5b1b8a6Copy full SHA for 5b1b8a6
inc/Manifest.php
@@ -15,15 +15,15 @@ public function sendManifest()
15
$manifest['scope'] = DOKU_REL;
16
17
if (empty($manifest['name'])) {
18
- $manifest['name'] = $conf['title'];
+ $manifest['name'] = strip_tags($conf['title']);
19
}
20
21
if (empty($manifest['short_name'])) {
22
- $manifest['short_name'] = $conf['title'];
+ $manifest['short_name'] = strip_tags($conf['title']);
23
24
25
if (empty($manifest['description'])) {
26
- $manifest['description'] = $conf['tagline'];
+ $manifest['description'] = strip_tags($conf['tagline']);
27
28
29
if (empty($manifest['start_url'])) {
0 commit comments