We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61ca7be commit d92bf8eCopy full SHA for d92bf8e
system/Database/SQLSRV/Connection.php
@@ -121,7 +121,7 @@ public function connect(bool $persistent = false)
121
'ConnectionPooling' => $persistent ? 1 : 0,
122
'CharacterSet' => $charset,
123
'Encrypt' => $this->encrypt === true ? 1 : 0,
124
- 'TrustServerCertificate' => $this->trustServerCertificate === true ? 1 : 0,
+ 'TrustServerCertificate' => $this->trustServerCertificate ? 1 : 0,
125
'ReturnDatesAsStrings' => 1,
126
];
127
0 commit comments