summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Roach <greg@subaqua.co.uk>2025-11-09 18:49:35 +0000
committerGreg Roach <greg@subaqua.co.uk>2025-11-09 18:49:35 +0000
commit7ef5e78e0a11b8dfb9006e500882213a02e7b07b (patch)
treef2f9ae4124d43ec2c424527ae1b3bda5b440efae
parent505b63057d5f9d2d716c9b87633a61ddad41b1db (diff)
downloadwebtrees-7ef5e78e0a11b8dfb9006e500882213a02e7b07b.tar.gz
webtrees-7ef5e78e0a11b8dfb9006e500882213a02e7b07b.tar.bz2
webtrees-7ef5e78e0a11b8dfb9006e500882213a02e7b07b.zip
Fix: #5248 - outdated check for PDO driver for SQL-Server
-rw-r--r--app/Services/ServerCheckService.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Services/ServerCheckService.php b/app/Services/ServerCheckService.php
index 11ba54391a..375be79baa 100644
--- a/app/Services/ServerCheckService.php
+++ b/app/Services/ServerCheckService.php
@@ -266,7 +266,7 @@ class ServerCheckService
case DB::SQL_SERVER:
return Collection::make([
$this->checkPhpExtension('pdo'),
- $this->checkPhpExtension('pdo_odbc'),
+ $this->checkPhpExtension('pdo_sqlsrv'),
]);
default: