From 347a4d482c93ec67f664c28cc56826cb8390e9ec Mon Sep 17 00:00:00 2001 From: Michele Locati Date: Thu, 16 Apr 2020 14:21:23 +0200 Subject: [PATCH] Fix sqlsrv/pdo_sqlsrv because of recent changes Test: pdo_sqlsrv, sqlsrv --- install-php-extensions | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install-php-extensions b/install-php-extensions index 43881f3..976c651 100755 --- a/install-php-extensions +++ b/install-php-extensions @@ -1152,8 +1152,8 @@ installPECLModule() { # https://docs.microsoft.com/it-it/sql/connect/php/system-requirements-for-the-php-sql-driver?view=sql-server-2017 if test $1 -le 700; then installPECLModule_actual="$2-5.3.0" - elif test $1 -ge 704; then - installPECLModule_actual="$2-5.7.0preview" + elif test $1 -le 701; then + installPECLModule_actual="$2-5.6.1" fi ;; propro)