true is a boolean, not a string

This commit is contained in:
Jörn Friedrich Dreyer
2016-05-27 23:07:20 +02:00
parent 6ff989bbc3
commit d454885140

View File

@@ -40,7 +40,7 @@ To use a memcache with Transactional File Locking, you must install the Redis
server and corresponding PHP module. After installing Redis you must enter a
configuration in your ``config.php`` file like this example::
'filelocking.enabled' => 'true',
'filelocking.enabled' => true,
'memcache.locking' => '\OC\Memcache\Redis',
'redis' => array(
'host' => 'localhost',
@@ -56,7 +56,7 @@ If you want to configure Redis to listen on an Unix socket (which is
recommended if Redis is running on the same system as ownCloud) use this example
``config.php`` configuration::
'filelocking.enabled' => 'true',
'filelocking.enabled' => true,
'memcache.locking' => '\OC\Memcache\Redis',
'redis' => array(
'host' => '/var/run/redis/redis.sock',