mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 22:10:45 +02:00
[ticket/11866] Update some occurances of phpbb_db_ to new Namespace
PHPBB3-11866
This commit is contained in:
@@ -23,7 +23,7 @@ define('IN_PHPBB', true);
|
||||
require(dirname(__FILE__) . '/../includes/db/schema_data.php');
|
||||
require(dirname(__FILE__) . '/../phpbb/db/tools.php');
|
||||
|
||||
$dbms_type_map = phpbb_db_tools::get_dbms_type_map();
|
||||
$dbms_type_map = phpbb\db\tools::get_dbms_type_map();
|
||||
|
||||
// A list of types being unsigned for better reference in some db's
|
||||
$unsigned_types = array('UINT', 'UINT:', 'USINT', 'BOOL', 'TIMESTAMP');
|
||||
|
@@ -59,7 +59,7 @@ echo "USE $dbname;$newline$newline";
|
||||
require($phpbb_root_path . 'includes/db/schema_data.' . $phpEx);
|
||||
require($phpbb_root_path . 'phpbb/db/tools.' . $phpEx);
|
||||
|
||||
$dbms_type_map = phpbb_db_tools::get_dbms_type_map();
|
||||
$dbms_type_map = phpbb\db\tools::get_dbms_type_map();
|
||||
|
||||
foreach ($schema_data as $table_name => $table_data)
|
||||
{
|
||||
|
Reference in New Issue
Block a user