mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
[ticket/10678] Lowercase class name, adjust comment width
PHPBB3-10678
This commit is contained in:
@@ -14,7 +14,7 @@
|
||||
*
|
||||
* This is used in the custom PHPUnit ODBC driver
|
||||
*/
|
||||
class phpbb_database_connection_ODBC_PDO_wrapper extends PDO
|
||||
class phpbb_database_connection_odbc_pdo_wrapper extends PDO
|
||||
{
|
||||
// Name of the driver being used (i.e. mssql, firebird)
|
||||
public $driver = '';
|
||||
|
@@ -97,13 +97,13 @@ class phpbb_database_test_connection_manager
|
||||
{
|
||||
case 'mssql':
|
||||
case 'mssql_odbc':
|
||||
$this->pdo = new phpbb_database_connection_ODBC_PDO_wrapper('mssql', 0, $dsn, $this->config['dbuser'], $this->config['dbpasswd']);
|
||||
$this->pdo = new phpbb_database_connection_odbc_pdo_wrapper('mssql', 0, $dsn, $this->config['dbuser'], $this->config['dbpasswd']);
|
||||
break;
|
||||
|
||||
case 'firebird':
|
||||
if (!empty($this->config['custom_dsn']))
|
||||
{
|
||||
$this->pdo = new phpbb_database_connection_ODBC_PDO_wrapper('firebird', 0, $dsn, $this->config['dbuser'], $this->config['dbpasswd']);
|
||||
$this->pdo = new phpbb_database_connection_odbc_pdo_wrapper('firebird', 0, $dsn, $this->config['dbuser'], $this->config['dbpasswd']);
|
||||
break;
|
||||
}
|
||||
// Fall through if they're using the firebird PDO driver and not the generic ODBC driver
|
||||
|
Reference in New Issue
Block a user