Changeset 1607404
- Timestamp:
- 03/03/2017 07:32:26 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vaultpress/trunk/class.vaultpress-ixr-ssl-client.php
r1321340 r1607404 34 34 $this->headers['Content-Length'] = $length; 35 35 36 $sslverify = true; 37 if ( defined( 'VAULTPRESS_NO_SSL' ) && VAULTPRESS_NO_SSL ) { 38 $sslverify = false; 39 } 36 40 if ( class_exists( 'WP_Http' ) ) { 37 41 $args = array( … … 39 43 'body' => $xml, 40 44 'headers' => $this->headers, 41 'sslverify' => false,45 'sslverify' => $sslverify, 42 46 ); 43 47 if ( $this->timeout )
Note: See TracChangeset
for help on using the changeset viewer.