]> git.mjollnir.org Git - moodle.git/commitdiff
MSSQL only runs under UTF8 (with the correct ODBTP driver, of course)
authorstronk7 <stronk7>
Mon, 4 Sep 2006 22:16:30 +0000 (22:16 +0000)
committerstronk7 <stronk7>
Mon, 4 Sep 2006 22:16:30 +0000 (22:16 +0000)
lib/setuplib.php

index cd73326b1fbb6d798fa3a3875af41da6aaba63b1..552305158f3ba40c6b3e026d0cc248d714c39236 100644 (file)
@@ -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;
 }