diff options
author | Björn Schießle <bjoern@schiessle.org> | 2013-06-13 07:32:41 -0700 |
---|---|---|
committer | Björn Schießle <bjoern@schiessle.org> | 2013-06-13 07:32:41 -0700 |
commit | 7889f2ef5c086d050cb88e2943253af84362365f (patch) | |
tree | a955ba46e3581d865d0fef50cf836c5b43b42498 /core/templates/layout.base.php | |
parent | 4bafa4e81acea88c3925a04c392a982c80a1d7c3 (diff) | |
parent | 15eda5321531b7ae44a6dd2ed1d28ae0e2045c2b (diff) | |
download | nextcloud-server-7889f2ef5c086d050cb88e2943253af84362365f.tar.gz nextcloud-server-7889f2ef5c086d050cb88e2943253af84362365f.zip |
Merge pull request #3687 from owncloud/template_updates
Make templates aware of different owncloud editions
Diffstat (limited to 'core/templates/layout.base.php')
-rw-r--r-- | core/templates/layout.base.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/templates/layout.base.php b/core/templates/layout.base.php index 336df27ef1c..163e8e3ae7e 100644 --- a/core/templates/layout.base.php +++ b/core/templates/layout.base.php @@ -6,7 +6,9 @@ <!--[if gt IE 9]><html class="ng-csp ie"><![endif]--> <!--[if !IE]><!--><html class="ng-csp"><!--<![endif]--> <head> - <title>ownCloud</title> + <title> + <?php p(OC_Defaults::getName()); ?> + </title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="shortcut icon" href="<?php print_unescaped(image_path('', 'favicon.png')); ?>" /> <link rel="apple-touch-icon-precomposed" href="<?php print_unescaped(image_path('', 'favicon-touch.png')); ?>" /> |