Skip to content
Snippets Groups Projects
Commit 40e74b59 authored by Björn Schießle's avatar Björn Schießle
Browse files

Merge pull request #3682 from owncloud/disable_proxys_on_sslcert_upload

disable proxys during ssl root cert upload to avoid encryption
parents de5eed4f 51950873
No related branches found
No related tags found
No related merge requests found
......@@ -29,8 +29,12 @@ if ($isValid == false) {
// add the certificate if it could be verified
if ( $isValid ) {
// disable proxy to prevent multiple fopen calls
$proxyStatus = \OC_FileProxy::$enabled;
\OC_FileProxy::$enabled = false;
$view->file_put_contents($filename, $data);
OC_Mount_Config::createCertificateBundle();
\OC_FileProxy::$enabled = $proxyStatus;
} else {
OCP\Util::writeLog('files_external',
'Couldn\'t import SSL root certificate ('.$filename.'), allowed formats: PEM and DER',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment