diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-10-29 17:23:27 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-11-25 16:29:06 +0100 |
commit | a6c088a1ef1ff8f1e1161ab9a61d8f1e57231b15 (patch) | |
tree | 8aad1443184cd2b519a2062be1df7c357fb48379 /tests/preseed-config.php | |
parent | 6fb2477fb75d4c982a1568e2392d17fd7cc2fd4b (diff) | |
download | nextcloud-server-a6c088a1ef1ff8f1e1161ab9a61d8f1e57231b15.tar.gz nextcloud-server-a6c088a1ef1ff8f1e1161ab9a61d8f1e57231b15.zip |
adding new config parameter for sqlite to specify the journal mode
Diffstat (limited to 'tests/preseed-config.php')
-rw-r--r-- | tests/preseed-config.php | 33 |
1 files changed, 16 insertions, 17 deletions
diff --git a/tests/preseed-config.php b/tests/preseed-config.php index 3fd5b3cb7fc..3f41573bf29 100644 --- a/tests/preseed-config.php +++ b/tests/preseed-config.php @@ -1,22 +1,21 @@ <?php $CONFIG = array ( - "appstoreenabled" => false, - 'apps_paths' => - array ( - 0 => - array ( - 'path' => OC::$SERVERROOT.'/apps', - 'url' => '/apps', - 'writable' => true, - ), - 1 => - array ( - 'path' => OC::$SERVERROOT.'/apps2', - 'url' => '/apps2', - 'writable' => false, - ) - ), - + "appstoreenabled" => false, + 'apps_paths' => + array ( + 0 => + array ( + 'path' => OC::$SERVERROOT.'/apps', + 'url' => '/apps', + 'writable' => true, + ), + 1 => + array ( + 'path' => OC::$SERVERROOT.'/apps2', + 'url' => '/apps2', + 'writable' => false, + ) + ), ); if(substr(strtolower(PHP_OS), 0, 3) == "win") { |