diff options
author | Lukas Reschke <lukas@owncloud.com> | 2014-10-20 19:50:20 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2014-10-20 19:50:20 +0200 |
commit | c0ddf06dfe5056598ed08c34da46bde0f8cab34c (patch) | |
tree | 0728050d8ac17841ac1bb8b68cb7a9ad2a2564bc /core/templates | |
parent | 32aa1b1b65c138c5dda60c8f4b601378ec28cb79 (diff) | |
parent | f52ed231b38fa3d0b8a6d22ad94bd60cbede4a63 (diff) | |
download | nextcloud-server-c0ddf06dfe5056598ed08c34da46bde0f8cab34c.tar.gz nextcloud-server-c0ddf06dfe5056598ed08c34da46bde0f8cab34c.zip |
Merge pull request #11666 from owncloud/setup-hidesqlitemessageforautoconfig
Hide SQLite information on setup when autoconfig is used
Diffstat (limited to 'core/templates')
-rw-r--r-- | core/templates/installation.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/templates/installation.php b/core/templates/installation.php index b74d4caf107..9ef63dbfe8c 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -147,7 +147,9 @@ <?php endif; ?> <?php endif; ?> + <?php if(!$_['dbIsSet'] OR count($_['errors']) > 0): ?> <p id="sqliteInformation" class="info"><?php p($l->t('SQLite will be used as database. For larger installations we recommend to change this.'));?></p> + <?php endif ?> <div class="buttons"><input type="submit" class="primary" value="<?php p($l->t( 'Finish setup' )); ?>" data-finishing="<?php p($l->t( 'Finishing …' )); ?>" /></div> </form> |