From: Bjoern Schiessle Date: Mon, 9 Jul 2012 08:19:19 +0000 (+0200) Subject: remove comments around code block X-Git-Tag: v4.5.0beta1~74^2~372^2~27 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=32b476d6ec58e6b020667ebe71ab5e2cd380b375;p=nextcloud-server.git remove comments around code block --- 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(''); }