-Resetting encrypt if value is false
This commit is contained in:
parent
e14a3670fc
commit
52f240ef15
|
@ -100,6 +100,9 @@ class MsSQL implements AdapterInterface {
|
|||
if ( $this->encrypt ?? false ) {
|
||||
$parts[] = "Encrypt=1";
|
||||
}
|
||||
else {
|
||||
$parts[] = "Encrypt=0";
|
||||
}
|
||||
|
||||
if ( $this->failoverPartner ?? false ) {
|
||||
$parts[] = "Failover_Partner={$this->failoverPartner}";
|
||||
|
|
Loading…
Reference in New Issue