1
0
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:
Patrick Webster
2012-04-12 20:10:20 -05:00
parent 9bb2785da0
commit ceacb63abf
3 changed files with 18 additions and 14 deletions

View File

@@ -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 = '';

View File

@@ -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