1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-29 02:59:52 +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:
David M
2008-01-07 15:19:38 +00:00
parent 159ce6f8d1
commit 2928574ed4
25 changed files with 593 additions and 256 deletions

View File

@@ -1125,7 +1125,7 @@ class acp_users
// Update Custom Fields
if (sizeof($cp_data))
{
switch ($db->sql_layer)
switch ($db->dbms_type)
{
case 'oracle':
case 'firebird':
@@ -1136,13 +1136,11 @@ class acp_users
case 'sqlite':
case 'mssql':
case 'mssql_odbc':
$right_delim = ']';
$left_delim = '[';
break;
case 'mysql':
case 'mysqli':
$right_delim = $left_delim = '`';
break;
}