diff options
author | Morris Jobke <hey@morrisjobke.de> | 2016-11-23 18:20:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-23 18:20:56 +0100 |
commit | d342eedc777413cc4b9438d53faed561563e03bf (patch) | |
tree | f6e7da4c8a91e79adfa16e0d583036d53d2ce409 /core | |
parent | 59db9fada283575a8dd759f2d68d933934136d90 (diff) | |
parent | 56881433c06b1c5e80d307a841ca3304d0239ee3 (diff) | |
download | nextcloud-server-d342eedc777413cc4b9438d53faed561563e03bf.tar.gz nextcloud-server-d342eedc777413cc4b9438d53faed561563e03bf.zip |
Merge pull request #2242 from nextcloud/fix-installation-spinner
show installation spinner correctly, fix #2129
Diffstat (limited to 'core')
-rw-r--r-- | core/templates/installation.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/templates/installation.php b/core/templates/installation.php index f7556988634..d3f5021821d 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -147,8 +147,6 @@ script('core', [ <?php endif; ?> <?php endif; ?> - <div class="icon-loading-dark float-spinner"> </div> - <?php if(!$_['dbIsSet'] OR count($_['errors']) > 0): ?> <fieldset id="sqliteInformation" class="warning"> <legend><?php p($l->t('Performance warning'));?></legend> @@ -158,6 +156,8 @@ script('core', [ </fieldset> <?php endif ?> + <div class="icon-loading-dark float-spinner"> </div> + <div class="buttons"><input type="submit" class="primary" value="<?php p($l->t( 'Finish setup' )); ?>" data-finishing="<?php p($l->t( 'Finishing …' )); ?>"></div> <p class="info"> |