You are here

public function FeedsHTTPFetcherResult::setAcceptInvalidCert in Feeds 7.2

Sets the accept invalid certificates option.

Parameters

bool $accept_invalid_cert: Whether to accept invalid certificates.

File

plugins/FeedsHTTPFetcher.inc, line 102

Class

FeedsHTTPFetcherResult
Result of FeedsHTTPFetcher::fetch().

Code

public function setAcceptInvalidCert($accept_invalid_cert) {
  $this->acceptInvalidCert = (bool) $accept_invalid_cert;
}