diff options
author | Morris Jobke <morris.jobke@gmail.com> | 2014-06-03 08:01:39 +0200 |
---|---|---|
committer | Morris Jobke <morris.jobke@gmail.com> | 2014-06-03 08:01:39 +0200 |
commit | 68a4fd44e62852453e65eca31f319842573be969 (patch) | |
tree | 4d062cb264ceef5db1eba8cc7b629df6b294a872 /settings/templates | |
parent | a4dd4cbb8fdf6d459325884290b3f4804a554328 (diff) | |
download | nextcloud-server-68a4fd44e62852453e65eca31f319842573be969.tar.gz nextcloud-server-68a4fd44e62852453e65eca31f319842573be969.zip |
add notification on admin page
Diffstat (limited to 'settings/templates')
-rw-r--r-- | settings/templates/admin.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/settings/templates/admin.php b/settings/templates/admin.php index cb57bc0ce72..ad4b7a77626 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -98,6 +98,20 @@ if (!$_['isAnnotationsWorking']) { <?php } +// SQLite database performance issue +if ($_['databaseOverload']) { + ?> +<div class="section"> + <h2><?php p($l->t('Database Performance Warning'));?></h2> + + <span class="securitywarning"> + <?php p($l->t('SQLite will be used as database. For larger installations we recommend to change this.')); ?> + </span> + +</div> +<?php +} + // if module fileinfo available? if (!$_['has_fileinfo']) { ?> |