summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrank Karlitschek <frank@oc.(none)>2012-04-30 13:08:32 +0200
committerFrank Karlitschek <frank@oc.(none)>2012-04-30 13:08:32 +0200
commit051cb7d96b238212535de9fd452c9cbbac4b84e8 (patch)
treeaba7f3a71e34a4a355faf8ff00cd86b5770adcec
parentf0701f75a913d6220008a1b1361db4decf5ca549 (diff)
downloadnextcloud-server-051cb7d96b238212535de9fd452c9cbbac4b84e8.tar.gz
nextcloud-server-051cb7d96b238212535de9fd452c9cbbac4b84e8.zip
show the username in the title. good idea.
-rw-r--r--core/templates/layout.user.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php
index df7897717f6..674b1853037 100644
--- a/core/templates/layout.user.php
+++ b/core/templates/layout.user.php
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
- <title><?php echo isset($_['application']) && !empty($_['application'])?$_['application'].' | ':'' ?>ownCloud</title>
+ <title><?php echo isset($_['application']) && !empty($_['application'])?$_['application'].' | ':'' ?>ownCloud <?php echo OC_User::getUser()?' ('.OC_User::getUser().') ':'' ?></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): ?>