diff options
author | Robin Appelman <icewind@owncloud.com> | 2013-02-18 15:13:25 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2013-02-18 15:13:25 +0100 |
commit | 3bf9aa408e4fb3f20dc715ad43b7a6aaaa6fb4f4 (patch) | |
tree | 4759a708aa43ab6f8a30ba9d59480a49fd1d3e7b /apps | |
parent | 2bbb57e429a292d72ca4c7aa06604b1eb2ef290c (diff) | |
parent | cad65915a7c5b8df10ebbe27064a8012b9a79e74 (diff) | |
download | nextcloud-server-3bf9aa408e4fb3f20dc715ad43b7a6aaaa6fb4f4.tar.gz nextcloud-server-3bf9aa408e4fb3f20dc715ad43b7a6aaaa6fb4f4.zip |
Merge branch 'mountconfig' of github.com:owncloud/core into mountconfig
Diffstat (limited to 'apps')
-rwxr-xr-x | apps/files_external/lib/config.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index d31c2f35a68..3f08610b2b8 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -312,7 +312,7 @@ class OC_Mount_Config { } else { $file = OC::$SERVERROOT.'/config/mount.json'; } - $content = json_encode($data); + $content = json_encode($data, JSON_PRETTY_PRINT); @file_put_contents($file, $content); } |