X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FDatabaseMssql.php;h=a6dda2573fadfe54858715c25a6806e9e6e8019f;hb=417cbfbc296aa103961d5185668a6da8066ac410;hp=462c5e52f51c49212ead86e6973342362624b82b;hpb=06c8529903f5fbc9356a6e4676e450a905458799;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/DatabaseMssql.php b/includes/DatabaseMssql.php index 462c5e52f5..a6dda2573f 100755 --- a/includes/DatabaseMssql.php +++ b/includes/DatabaseMssql.php @@ -1,14 +1,14 @@ 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 {