From: stronk7 Date: Mon, 4 Sep 2006 22:16:30 +0000 (+0000) Subject: MSSQL only runs under UTF8 (with the correct ODBTP driver, of course) X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=bf05229983409a2b2b22994a117b30406b85dc69;p=moodle.git MSSQL only runs under UTF8 (with the correct ODBTP driver, of course) --- 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; }