Compare commits

...

2 Commits

Author SHA1 Message Date
Dave Mc Nicoll
84682d1c8e Merge branch 'master' of https://git.mcnd.ca/mcndave/ulmus 2022-06-21 15:32:31 +00:00
Dave Mc Nicoll
52f240ef15 -Resetting encrypt if value is false 2022-06-21 15:31:49 +00:00

View File

@ -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}";