diff options
| author | Colin Morris <relapse@gmail.com> | 2018-04-09 19:04:49 +1000 |
|---|---|---|
| committer | Mark Newnham <mark@newnhams.com> | 2018-07-26 19:55:28 -0600 |
| commit | a505c0b1e75097b2f419aa743b0727e9e0a18e4b (patch) | |
| tree | 4b3f2ac4d13673a2a492b8ec76aef0d732f2c6fb /drivers | |
| parent | 46fee1079b7913a61d00b461bfbb5f1619e90771 (diff) | |
| download | adodb-a505c0b1e75097b2f419aa743b0727e9e0a18e4b.tar.gz adodb-a505c0b1e75097b2f419aa743b0727e9e0a18e4b.tar.bz2 adodb-a505c0b1e75097b2f419aa743b0727e9e0a18e4b.zip | |
Fixed typo. Thanks peterdd
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/adodb-mysqli.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/adodb-mysqli.inc.php b/drivers/adodb-mysqli.inc.php index f4eecc12..dec1fdb6 100644 --- a/drivers/adodb-mysqli.inc.php +++ b/drivers/adodb-mysqli.inc.php @@ -126,7 +126,7 @@ class ADODB_mysqli extends ADOConnection { if ($persist && PHP_VERSION > 5.2 && strncmp($argHostname,'p:',2) != 0) $argHostname = 'p:'.$argHostname; // SSL Connections for MySQLI - if ($this->ssl_key || $this->ssl_cer || $this->ssl_ca || $this->ssl_ccapath || $this->ca_cipher) { + if ($this->ssl_key || $this->ssl_cer || $this->ssl_ca || $this->ssl_capath || $this->ssl_cipher) { mysqli_ssl_set($this->_connectionID, $this->ssl_key, $this->ssl_cer, $this->ssl_ca, $this->ssl_capath, $this->ssl_cipher); } |
