summaryrefslogtreecommitdiffstats
path: root/settings/templates
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2015-06-02 15:03:27 +0200
committerJoas Schilling <nickvergessen@owncloud.com>2015-06-02 15:42:48 +0200
commitbdc82dcfb900050f66d7e632c2808363b57e8a96 (patch)
treeadac931027d894f3541f0e40e25c54b9bb6d869f /settings/templates
parent3ebc8f0564395fbb519fc4275e0f6f883df708b7 (diff)
downloadnextcloud-server-bdc82dcfb900050f66d7e632c2808363b57e8a96.tar.gz
nextcloud-server-bdc82dcfb900050f66d7e632c2808363b57e8a96.zip
Check for redis to be 2.2.5+
Diffstat (limited to 'settings/templates')
-rw-r--r--settings/templates/admin.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/settings/templates/admin.php b/settings/templates/admin.php
index 3d253d4cbbd..fb6ef9b3e77 100644
--- a/settings/templates/admin.php
+++ b/settings/templates/admin.php
@@ -106,11 +106,11 @@ if ($_['WindowsWarning']) {
<?php
}
-// APCU Warning if outdated
-if ($_['ApcuOutdatedWarning']) {
+// Warning if memcache is outdated
+foreach ($_['OutdatedCacheWarning'] as $php_module => $data) {
?>
<li>
- <?php p($l->t('APCu below version 4.0.6 is installed, for stability and performance reasons we recommend to update to a newer APCu version.')); ?>
+ <?php p($l->t('%1$s below version %2$s is installed, for stability and performance reasons we recommend to update to a newer %1$s version.', $data)); ?>
</li>
<?php
}