diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-02-12 21:56:01 +0100 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-02-12 21:56:01 +0100 |
commit | a25bda8e414077cc10fd82aef0a653195b13da05 (patch) | |
tree | d3080712d2a65a90b55d80a67faa86cd345118db /core | |
parent | 5c816c0cc93094b1ad6ca841e89dc5fe579b70b6 (diff) | |
download | nextcloud-server-a25bda8e414077cc10fd82aef0a653195b13da05.tar.gz nextcloud-server-a25bda8e414077cc10fd82aef0a653195b13da05.zip |
Add application name to title
Diffstat (limited to 'core')
-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 f793275f2ca..64353d4d4f4 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -1,7 +1,7 @@ <!DOCTYPE html> <html> <head> - <title>ownCloud</title> + <title><?php echo isset($_['application']) && !empty($_['application'])?$_['application'].' | ':'' ?>ownCloud</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="shortcut icon" href="<?php echo image_path('', 'favicon.png'); ?>" /><link rel="apple-touch-icon-precomposed" href="<?php echo image_path('', 'favicon-touch.png'); ?>" /> <?php foreach($_['cssfiles'] as $cssfile): ?> |