diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2019-01-25 12:14:01 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2019-02-22 12:54:31 +0100 |
commit | 97ad80524fb1c30980c8f361b29c7d62500355fe (patch) | |
tree | 152f04c347780b08de1ea5d1c97b59da3a4d8dd7 | |
parent | d1ba0d52abc434d7a444068319ffa9b115d03eb8 (diff) | |
download | nextcloud-server-97ad80524fb1c30980c8f361b29c7d62500355fe.tar.gz nextcloud-server-97ad80524fb1c30980c8f361b29c7d62500355fe.zip |
Fix tabbability of 'Storage & database' in install, open on enter stilll missing
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
-rw-r--r-- | core/templates/installation.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/installation.php b/core/templates/installation.php index 3a6fd283e0b..3ff94f05d0a 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -57,7 +57,7 @@ script('core', [ <?php if(!$_['directoryIsSet'] OR !$_['dbIsSet'] OR count($_['errors']) > 0): ?> <fieldset id="advancedHeader"> - <legend><a id="showAdvanced"><?php p($l->t( 'Storage & database' )); ?> <img src="<?php print_unescaped(image_path('', 'actions/caret-white.svg')); ?>" /></a></legend> + <legend><a id="showAdvanced" tabindex="0"><?php p($l->t( 'Storage & database' )); ?> <img src="<?php print_unescaped(image_path('', 'actions/caret-white.svg')); ?>" /></a></legend> </fieldset> <?php endif; ?> |