From b3dec24361025a36c2483ff26189c437f016d271 Mon Sep 17 00:00:00 2001 From: v-susanh Date: Fri, 1 Dec 2017 15:57:51 -0800 Subject: [PATCH] fixed return for IsLocaleSupported (#614) --- test/functional/sqlsrv/MsCommon.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/functional/sqlsrv/MsCommon.inc b/test/functional/sqlsrv/MsCommon.inc index dc9ba15b..daa9bd19 100644 --- a/test/functional/sqlsrv/MsCommon.inc +++ b/test/functional/sqlsrv/MsCommon.inc @@ -463,6 +463,8 @@ function isLocaleSupported() if (explode(".", $msodbcsql_ver)[0] < 17) { return false; } + + return true; } ?>