mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-12 03:34:04 +02:00
- a few tiny clean ups
- a new MS SQL DBAL, it does not work so hot because of issues with the extension it depends on git-svn-id: file:///svn/phpbb/trunk@8313 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -254,21 +254,7 @@ class phpbb_db_tools
|
||||
{
|
||||
$this->db = $db;
|
||||
|
||||
// Determine mapping database type
|
||||
switch ($this->db->sql_layer)
|
||||
{
|
||||
case 'mysqli':
|
||||
$this->sql_layer = 'mysql';
|
||||
break;
|
||||
|
||||
case 'mssql_odbc':
|
||||
$this->sql_layer = 'mssql';
|
||||
break;
|
||||
|
||||
default:
|
||||
$this->sql_layer = $this->db->sql_layer;
|
||||
break;
|
||||
}
|
||||
$this->sql_layer = $this->db->dbms_type;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user