diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2016-10-06 20:57:32 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2016-10-11 10:56:50 +0200 |
commit | 81d5255989f752c2f46d044a294c8484cc5cb1a1 (patch) | |
tree | 2ba405b5281ef618dec6417506ca36b3c5699085 | |
parent | 2f546eab7101554a8002e299f43f48a70d82f65f (diff) | |
download | nextcloud-server-81d5255989f752c2f46d044a294c8484cc5cb1a1.tar.gz nextcloud-server-81d5255989f752c2f46d044a294c8484cc5cb1a1.zip |
Set proper web title for apple
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
-rw-r--r-- | core/templates/layout.user.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 3a7fb0454e8..825af8deae2 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -16,7 +16,7 @@ <meta name="apple-itunes-app" content="app-id=<?php p($theme->getiTunesAppId()); ?>"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="black"> - <meta name="apple-mobile-web-app-title" content="<?php p((!empty($_['application']) && $_['appid']!='files')? $_['application']:'Nextcloud'); ?>"> + <meta name="apple-mobile-web-app-title" content="<?php p((!empty($_['application']) && $_['appid']!='files')? $_['application']:$theme->getTitle()); ?>"> <meta name="mobile-web-app-capable" content="yes"> <meta name="theme-color" content="<?php p($theme->getMailHeaderColor()); ?>"> <link rel="shortcut icon" href="<?php print_unescaped(image_path($_['appid'], 'favicon.ico')); /* IE11+ supports png */ ?>"> |