1076a1077,1080 > //JH 12.11.07 schema has to be quoted everywhere > //replacing $wgDBmwschema with $safeschema throughout this function (in SQL statements) > $safeschema = $this->quote_ident($wgDBmwschema); > 1081c1085 < $this->doQuery("DROP TABLE $wgDBmwschema.$ctest"); --- > $this->doQuery("DROP TABLE $safeschema.$ctest"); 1083c1087 < $SQL = "CREATE TABLE $wgDBmwschema.$ctest(a int)"; --- > $SQL = "CREATE TABLE $safeschema.$ctest(a int)"; 1091c1095 < $this->doQuery("DROP TABLE $wgDBmwschema.mw_test_table"); --- > $this->doQuery("DROP TABLE $safeschema.mw_test_table");