Re-encode in utf-8 and removed trailing whitespaces
[lhc/web/wiklou.git] / includes / DatabaseMssql.php
index 462c5e5..a6dda25 100755 (executable)
@@ -1,14 +1,14 @@
 <?php
 /**
  * This script is the MSSQL Server database abstraction layer
- * - Licenced under LGPL (http://www.gnu.org/copyleft/lesser.html)
- * - Author:  [http://www.organicdesign.co.nz/nad User:Nad]
  *
  * See maintenance/mssql/README for development notes and other specific information
+ * @ingroup Database
+ * @file
  */
 
 /**
- * @addtogroup Database
+ * @ingroup Database
  */
 class DatabaseMssql extends Database {
 
@@ -945,8 +945,8 @@ class DatabaseMssql extends Database {
        }
 
        /**
-        * Called by the installer script (when modified according to the MediaWikiLite installation instructions)
-        * - this is the same way PostgreSQL works, MySQL reads in tables.sql and interwiki.sql using dbsource (which calls db->sourceFile)
+        * Called by the installer script
+        * - this is the same way as DatabasePostgresql.php, MySQL reads in tables.sql and interwiki.sql using dbsource (which calls db->sourceFile)
         */
        public function setup_database() {
                global $IP,$wgDBTableOptions;
@@ -994,14 +994,14 @@ class DatabaseMssql extends Database {
                        $line = fgets($f,1024);
                        $matches = array();
                        if (!preg_match('/^\s*(\(.+?),(\d)\)/', $line, $matches)) continue;
-                       #$this->query("$sql $matches[1],$matches[2])");
+                       $this->query("$sql $matches[1],$matches[2])");
                }
        }
 
 }
 
 /**
- * @addtogroup Database
+ * @ingroup Database
  */
 class MSSQLField extends MySQLField {