diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-07-24 00:36:40 -0700 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-07-24 00:36:40 -0700 |
commit | 54263624ea9ca6e6211c2aa72ba7dd2015189476 (patch) | |
tree | 66e80e3fad82a91dd402582e08f0a97775a93502 /core/templates/layout.user.php | |
parent | 7bb6aab8eea731840d67d5e3aa302c04a593a4e0 (diff) | |
parent | 1a73e607bdba6d654936bde632acaa4960dec729 (diff) | |
download | nextcloud-server-54263624ea9ca6e6211c2aa72ba7dd2015189476.tar.gz nextcloud-server-54263624ea9ca6e6211c2aa72ba7dd2015189476.zip |
Merge pull request #4030 from owncloud/more-themable-strings
More themable strings
Diffstat (limited to 'core/templates/layout.user.php')
-rw-r--r-- | core/templates/layout.user.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index dacbe79bd34..87c02a83d3b 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -7,11 +7,11 @@ <!--[if !IE]><!--><html class="ng-csp"><!--<![endif]--> <?php $defaults = new OC_Defaults(); // initialize themable default strings and urls ?> - + <head data-user="<?php p($_['user_uid']); ?>" data-requesttoken="<?php p($_['requesttoken']); ?>"> <title> <?php p(!empty($_['application'])?$_['application'].' | ':''); - p($defaults->getName()); + p($defaults->getTitle()); p(trim($_['user_displayname']) != '' ?' ('.$_['user_displayname'].') ':'') ?> </title> <meta charset="utf-8"> @@ -45,7 +45,7 @@ </div> <header><div id="header"> <a href="<?php print_unescaped(link_to('', 'index.php')); ?>" title="" id="owncloud"><img class="svg" - src="<?php print_unescaped(image_path('', 'logo-wide.svg')); ?>" alt="ownCloud" /></a> + src="<?php print_unescaped(image_path('', 'logo-wide.svg')); ?>" alt="<?php p($defaults->getName()); ?>" /></a> <div id="logo-claim" style="display:none;"><?php p($defaults->getLogoClaim()); ?></div> <ul id="settings" class="svg"> <span id="expand" tabindex="0" role="link"> |