diff options
author | Joas Schilling <coding@schilljs.com> | 2016-10-07 09:44:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-07 09:44:42 +0200 |
commit | b8030e6d0249882de92639135a18309718b10e43 (patch) | |
tree | 00781b5e751fb94f69717f2d22e4d211ec2083da | |
parent | 19485e3ec9dd7933d7e480cf86364d93a3caf94b (diff) | |
download | nextcloud-server-b8030e6d0249882de92639135a18309718b10e43.tar.gz nextcloud-server-b8030e6d0249882de92639135a18309718b10e43.zip |
Use name from theming
-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 c585c0e0cc1..285eb3ab5f3 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -14,7 +14,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="icon" href="<?php print_unescaped(image_path($_['appid'], 'favicon.ico')); /* IE11+ supports png */ ?>"> |