diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-10-20 16:20:24 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-10-20 16:20:24 +0200 |
commit | f52ed231b38fa3d0b8a6d22ad94bd60cbede4a63 (patch) | |
tree | 124b80c3091b20c3e3f2d5a2a6d297285a15532a /core/templates/installation.php | |
parent | 0412f830352fe3b00a05de881535666a3530c31b (diff) | |
download | nextcloud-server-f52ed231b38fa3d0b8a6d22ad94bd60cbede4a63.tar.gz nextcloud-server-f52ed231b38fa3d0b8a6d22ad94bd60cbede4a63.zip |
Hide SQLite information on setup when autoconfig is used
Diffstat (limited to 'core/templates/installation.php')
-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> |