Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/survey_client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2015-12-17 17:08:31 +0300
committerJoas Schilling <nickvergessen@owncloud.com>2015-12-17 17:08:31 +0300
commita6dcb4628d0ed2fc51263f3e05597903364350cc (patch)
tree61fe5d1e26a08cab8b21b636cba7cf1bf9a69aed
parent47a838fb8ee992947ff0d99a34b25f6de1fab940 (diff)
Fallback to strings
-rw-r--r--categories/owncloud.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/categories/owncloud.php b/categories/owncloud.php
index 371e5ee..14b12ed 100644
--- a/categories/owncloud.php
+++ b/categories/owncloud.php
@@ -70,11 +70,11 @@ class OwnCloud implements ICategory {
'code' => $this->codeLocation(),
'enable_avatars' => $this->config->getSystemValue('enable_avatars', true) ? 'yes' : 'no',
'enable_previews' => $this->config->getSystemValue('enable_previews', true) ? 'yes' : 'no',
- 'memcache.local' => $this->config->getSystemValue('memcache.local', null),
- 'memcache.distributed' => $this->config->getSystemValue('memcache.distributed', null),
+ 'memcache.local' => $this->config->getSystemValue('memcache.local', 'none'),
+ 'memcache.distributed' => $this->config->getSystemValue('memcache.distributed', 'none'),
'asset-pipeline.enabled' => $this->config->getSystemValue('asset-pipeline.enabled') ? 'yes' : 'no',
'filelocking.enabled' => $this->config->getSystemValue('filelocking.enabled', true) ? 'yes' : 'no',
- 'memcache.locking' => $this->config->getSystemValue('memcache.locking', null),
+ 'memcache.locking' => $this->config->getSystemValue('memcache.locking', 'none'),
'debug' => $this->config->getSystemValue('debug', false) ? 'yes' : 'no',
];
}