diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-04-02 18:01:09 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-04-02 18:01:09 +0200 |
commit | 4a215cad3c1b601a291535560a5e0505f2119054 (patch) | |
tree | 52771536f25c056443cde960ab628462e594cce2 /core | |
parent | 4082436419d5325157553131b93343d5b7439b90 (diff) | |
parent | f4502b46703d5bb8516f252d6eea6941a1bd9d6b (diff) | |
download | nextcloud-server-4a215cad3c1b601a291535560a5e0505f2119054.tar.gz nextcloud-server-4a215cad3c1b601a291535560a5e0505f2119054.zip |
Merge pull request #15372 from Volker-E/master
fixing #15344
Diffstat (limited to 'core')
-rw-r--r-- | core/templates/layout.user.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 45c3f811540..880a276c725 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -37,7 +37,7 @@ </div> <header role="banner"><div id="header"> <a href="<?php print_unescaped(link_to('', 'index.php')); ?>" - title="" id="owncloud" tabindex="1"> + id="owncloud" tabindex="1"> <div class="logo-icon svg"> <h1 class="hidden-visually"> <?php p($theme->getName()); ?> @@ -76,7 +76,7 @@ <ul> <?php foreach($_['settingsnavigation'] as $entry):?> <li> - <a href="<?php print_unescaped($entry['href']); ?>" title="" + <a href="<?php print_unescaped($entry['href']); ?>" <?php if( $entry["active"] ): ?> class="active"<?php endif; ?>> <img class="svg" alt="" src="<?php print_unescaped($entry['icon']); ?>"> <?php p($entry['name']) ?> @@ -108,7 +108,7 @@ <ul> <?php foreach($_['navigation'] as $entry): ?> <li data-id="<?php p($entry['id']); ?>"> - <a href="<?php print_unescaped($entry['href']); ?>" title="<?php p($entry['name']); ?>" tabindex="3" + <a href="<?php print_unescaped($entry['href']); ?>" tabindex="3" <?php if( $entry['active'] ): ?> class="active"<?php endif; ?>> <img class="app-icon svg" alt="" src="<?php print_unescaped($entry['icon']); ?>"> <div class="icon-loading-dark" style="display:none;"></div> @@ -123,7 +123,7 @@ if(OC_User::isAdminUser(OC_User::getUser())): ?> <li id="apps-management"> - <a href="<?php print_unescaped(OC_Helper::linkToRoute('settings_apps')); ?>" title="<?php p($l->t('Apps')); ?>" tabindex="4" + <a href="<?php print_unescaped(OC_Helper::linkToRoute('settings_apps')); ?>" tabindex="4" <?php if( $_['appsmanagement_active'] ): ?> class="active"<?php endif; ?>> <img class="app-icon svg" alt="" src="<?php print_unescaped(OC_Helper::imagePath('settings', 'apps.svg')); ?>"> <div class="icon-loading-dark" style="display:none;"></div> |