diff options
author | Björn Schießle <schiessle@owncloud.com> | 2012-09-21 16:54:08 +0200 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2012-09-21 16:54:08 +0200 |
commit | 3d2cd64a4890c0e402fd8b2e4b6d37bf5f98b991 (patch) | |
tree | b27f27f5f2d686e7dfda5003e8d1de3218d35a22 /apps | |
parent | bcd3d1116c65de257329a13862ffbad59008325d (diff) | |
download | nextcloud-server-3d2cd64a4890c0e402fd8b2e4b6d37bf5f98b991.tar.gz nextcloud-server-3d2cd64a4890c0e402fd8b2e4b6d37bf5f98b991.zip |
add a line break after every certificate
Diffstat (limited to 'apps')
-rwxr-xr-x | apps/files_external/lib/config.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index eec31ec2ef9..f87a042b386 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -270,6 +270,7 @@ class OC_Mount_Config { fclose($fh); if (strpos($data, 'BEGIN CERTIFICATE')) { fwrite($fh_certs, $data); + fwrite($fh_certs, "\r\n"); } } |