[Pkg-owncloud-commits] [owncloud] 07/34: enhance sqlite warning on admin page as well as during setup - fixes #13906
David Prévot
taffit at moszumanska.debian.org
Wed Mar 11 15:49:35 UTC 2015
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to annotated tag v8.0.0
in repository owncloud.
commit f86c73c9f605db4fe77060fd89e23d412c5e4c77
Author: Thomas Müller <thomas.mueller at tmit.eu>
Date: Wed Feb 4 20:55:54 2015 +0100
enhance sqlite warning on admin page as well as during setup - fixes #13906
---
core/templates/installation.php | 7 ++++++-
settings/templates/admin.php | 14 ++++++++++++--
2 files changed, 18 insertions(+), 3 deletions(-)
diff --git a/core/templates/installation.php b/core/templates/installation.php
index 0b3b0d4..e5e191e 100644
--- a/core/templates/installation.php
+++ b/core/templates/installation.php
@@ -154,7 +154,12 @@ script('core', [
<?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>
+ <fieldset id="sqliteInformation" class="warning">
+ <legend><?php p($l->t('Performance Warning'));?></legend>
+ <p><?php p($l->t('SQLite will be used as database.'));?></p>
+ <p><?php p($l->t('For larger installations we recommend to choose a different database backend.'));?></p>
+ <p><?php p($l->t('Especially when using desktop client for file syncing the use of sqlite is highly discouraged.')); ?></p>
+ </fieldset>
<?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>
diff --git a/settings/templates/admin.php b/settings/templates/admin.php
index 65c6359..5a9bb85 100644
--- a/settings/templates/admin.php
+++ b/settings/templates/admin.php
@@ -114,8 +114,18 @@ if ($_['databaseOverload']) {
<div class="section">
<h2><?php p($l->t('Database Performance Info'));?></h2>
- <p class="securitywarning">
- <?php p($l->t('SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: \'occ db:convert-type\'')); ?>
+ <p>
+ <strong>
+ <?php p($l->t('SQLite is used as database. For larger installations we recommend to switch to a different database backend.')); ?>
+ </strong>
+ </p>
+ <p>
+ <strong>
+ <?php p($l->t('Especially when using desktop client for file syncing the use of sqlite is highly discouraged.')); ?>
+ </strong>
+ </p>
+ <p>
+ <?php p($l->t('To migrate to another database use the command line tool: \'occ db:convert-type\'')); ?>
</p>
</div>
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git
More information about the Pkg-owncloud-commits
mailing list