diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2012-07-09 10:19:19 +0200 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2012-07-09 10:19:19 +0200 |
commit | 32b476d6ec58e6b020667ebe71ab5e2cd380b375 (patch) | |
tree | 8256b4cfb56213e5151976786b53b69953981909 /apps | |
parent | 7d41d3aba8650d5bb7f5ec68721f645e91f5d52b (diff) | |
download | nextcloud-server-32b476d6ec58e6b020667ebe71ab5e2cd380b375.tar.gz nextcloud-server-32b476d6ec58e6b020667ebe71ab5e2cd380b375.zip |
remove comments around code block
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_external/lib/webdav.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_external/lib/webdav.php b/apps/files_external/lib/webdav.php index b30e121f99b..3d13518f57b 100644 --- a/apps/files_external/lib/webdav.php +++ b/apps/files_external/lib/webdav.php @@ -43,13 +43,13 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ ); $this->client = new OC_Connector_Sabre_Client($settings); - /* + if($caview = \OCP\Files::getStorage('files_external')) { $certPath=\OCP\Config::getSystemValue('datadirectory').$caview->getAbsolutePath("").'rootcerts.crt'; if (file_exists($certPath)) { $this->client->addTrustedCertificates($certPath); } - }*/ + } //create the root folder if necesary $this->mkdir(''); } |