diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-02-18 22:15:56 -0800 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-02-18 22:15:56 -0800 |
commit | c56542c58dedd3391aa79d7848d955b39b2ce6ac (patch) | |
tree | 24f3a0474a2361ac3cf58e6364ebe4fb11a9f209 /apps/files_external | |
parent | 76c4dc62964516852f88f251b49bef5e17153fcb (diff) | |
parent | 0e9b9f4f5ffb180a872ab06f9d124704372282a3 (diff) | |
download | nextcloud-server-c56542c58dedd3391aa79d7848d955b39b2ce6ac.tar.gz nextcloud-server-c56542c58dedd3391aa79d7848d955b39b2ce6ac.zip |
Merge pull request #1771 from owncloud/mountconfig
JSON mount config: no pretty print
Diffstat (limited to 'apps/files_external')
-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 3f08610b2b8..d31c2f35a68 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, JSON_PRETTY_PRINT); + $content = json_encode($data); @file_put_contents($file, $content); } |