diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-01-31 20:45:59 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-01-31 20:45:59 +0100 |
commit | 45865b45c42c76329189028c9fa8aaecdeb6893d (patch) | |
tree | 875f41e851d4806c1886eb6cf27c46761ab96857 /core/templates | |
parent | 6d560be564edf0367b0c04190fcf5e8d228e7b4c (diff) | |
download | nextcloud-server-45865b45c42c76329189028c9fa8aaecdeb6893d.tar.gz nextcloud-server-45865b45c42c76329189028c9fa8aaecdeb6893d.zip |
use translate string for Log out, remove title
Diffstat (limited to 'core/templates')
-rw-r--r-- | core/templates/layout.user.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 9354476da0b..de505486f75 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -39,14 +39,14 @@ <?php foreach($_['settingsnavigation'] as $entry):?> <li> <a href="<?php echo $entry['href']; ?>" title="" <?php if( $entry["active"] ): ?> class="active"<?php endif; ?>> - <img class="svg" src="<?php echo $entry['icon']; ?>"> + <img class="svg" alt="" src="<?php echo $entry['icon']; ?>"> <?php echo $entry['name'] ?> </a> </li> <?php endforeach; ?> <li> <a id="logout" href="<?php echo link_to('', 'index.php'); ?>?logout=true"> - <img class="svg" alt="<?php echo $l->t('Log out');?>" title="<?php echo $l->t('Log out'); echo OC_User::getUser()?' ('.OC_User::getUser().') ':'' ?>" src="<?php echo image_path('', 'actions/logout.svg'); ?>" /> Log out + <img class="svg" alt="" src="<?php echo image_path('', 'actions/logout.svg'); ?>" /> <?php echo $l->t('Log out');?> </a> </li> </div> |