diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-12-18 10:50:05 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-12-18 10:51:41 +0100 |
commit | ea548cdaaafb1c67fab7aec51c0253a5162203e2 (patch) | |
tree | 61041fbd70e24d3b8ecbdb9b442cf24edef1e311 /apps/files_sharing/templates | |
parent | 5c6e08213e6ed52517f9f729ae91a2973f09c182 (diff) | |
download | nextcloud-server-ea548cdaaafb1c67fab7aec51c0253a5162203e2.tar.gz nextcloud-server-ea548cdaaafb1c67fab7aec51c0253a5162203e2.zip |
fix accessibility of logos
Diffstat (limited to 'apps/files_sharing/templates')
-rw-r--r-- | apps/files_sharing/templates/public.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php index 57c8707e962..0384d9a60aa 100644 --- a/apps/files_sharing/templates/public.php +++ b/apps/files_sharing/templates/public.php @@ -45,7 +45,11 @@ $previewSupported = OC\Preview::isMimeSupported($_['mimetype']) ? 'true' : 'fals <header><div id="header" class="<?php p((isset($_['folder']) ? 'share-folder' : 'share-file')) ?>"> <a href="<?php print_unescaped(link_to('', 'index.php')); ?>" title="" id="owncloud"> - <div class="logo-wide svg"></div> + <div class="logo-wide svg"> + <h1 class="hidden-visually"> + <?php p($theme->getName()); ?> + </h1> + </div> </a> <div id="logo-claim" style="display:none;"><?php p($theme->getLogoClaim()); ?></div> <div class="header-right"> |