From bf05229983409a2b2b22994a117b30406b85dc69 Mon Sep 17 00:00:00 2001 From: stronk7 Date: Mon, 4 Sep 2006 22:16:30 +0000 Subject: [PATCH] MSSQL only runs under UTF8 (with the correct ODBTP driver, of course) --- lib/setuplib.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/setuplib.php b/lib/setuplib.php index cd73326b1f..552305158f 100644 --- a/lib/setuplib.php +++ b/lib/setuplib.php @@ -117,6 +117,10 @@ function setup_is_unicodedb() { } } break; + case 'mssql': + /// MSSQL only runs under UTF8 + the proper ODBTP driver (both for Unix and Win32) + $unicodedb = true; + break: } return $unicodedb; } -- 2.39.5