diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-09-08 12:09:11 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-09-22 16:43:28 +0200 |
commit | a8e8a9dfb968d7e93b01404b9a12c1e48d8431a4 (patch) | |
tree | ae36919e1a5ad6fa9627e44758d01ae38e49f416 /lib/private/http/client/client.php | |
parent | 498e8f712c3512a7e8b054194f82611fae931353 (diff) | |
download | nextcloud-server-a8e8a9dfb968d7e93b01404b9a12c1e48d8431a4.tar.gz nextcloud-server-a8e8a9dfb968d7e93b01404b9a12c1e48d8431a4.zip |
Move certificate bundle into resources/config/
Diffstat (limited to 'lib/private/http/client/client.php')
-rw-r--r-- | lib/private/http/client/client.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/http/client/client.php b/lib/private/http/client/client.php index b0aff10a413..1907937e55e 100644 --- a/lib/private/http/client/client.php +++ b/lib/private/http/client/client.php @@ -62,7 +62,7 @@ class Client implements IClient { $dataDir = $this->config->getSystemValue('datadirectory'); $this->client->setDefaultOption('verify', $dataDir.'/'.$this->certificateManager->getCertificateBundle()); } else { - $this->client->setDefaultOption('verify', \OC::$SERVERROOT . '/config/ca-bundle.crt'); + $this->client->setDefaultOption('verify', \OC::$SERVERROOT . '/resources/config/ca-bundle.crt'); } $this->client->setDefaultOption('headers/User-Agent', 'ownCloud Server Crawler'); |