Skip to content

Commit 21cd04d

Browse files
authored
Merge pull request #14682 from nextcloud/warn-sqlite
Using SQLite should sound more scary 😈
2 parents 3e3d41a + 6ff79d4 commit 21cd04d

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

core/templates/installation.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,9 +153,10 @@
153153
<?php if(!$_['dbIsSet'] OR count($_['errors']) > 0): ?>
154154
<fieldset id="sqliteInformation" class="warning">
155155
<legend><?php p($l->t('Performance warning'));?></legend>
156-
<p><?php p($l->t('SQLite will be used as database.'));?></p>
157-
<p><?php p($l->t('For larger installations we recommend to choose a different database backend.'));?></p>
158-
<p><?php p($l->t('Especially when using the desktop client for file syncing the use of SQLite is discouraged.')); ?></p>
156+
<p><?php p($l->t('You have choosen SQLite as database.'));?></p>
157+
<p><?php p($l->t('SQLite should only be choosen for minimal and development instances.'));?></p>
158+
<p><?php p($l->t('For productive instances we recommend to choose a different database backend.'));?></p>
159+
<p><?php p($l->t('Using clients for file syncing the use of SQLite is highly discouraged.')); ?></p>
159160
</fieldset>
160161
<?php endif ?>
161162

0 commit comments

Comments
 (0)