mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-28 10:40:28 +02:00
Merge branch 'develop-ascraeus' into develop
Conflicts: phpBB/phpbb/db/migration/data/v30x/release_3_0_5_rc1.php phpBB/phpbb/db/migration/profilefield_base_migration.php phpBB/phpbb/db/migrator.php
This commit is contained in:
@@ -13,7 +13,7 @@
|
||||
|
||||
namespace phpbb\db\migration;
|
||||
|
||||
abstract class profilefield_base_migration extends \phpbb\db\migration\migration
|
||||
abstract class profilefield_base_migration extends container_aware_migration
|
||||
{
|
||||
protected $profilefield_name;
|
||||
|
||||
@@ -237,10 +237,8 @@ abstract class profilefield_base_migration extends \phpbb\db\migration\migration
|
||||
|
||||
if ($profile_row === null)
|
||||
{
|
||||
global $phpbb_container;
|
||||
|
||||
/* @var $manager \phpbb\profilefields\manager */
|
||||
$manager = $phpbb_container->get('profilefields.manager');
|
||||
$manager = $this->container->get('profilefields.manager');
|
||||
$profile_row = $manager->build_insert_sql_array(array());
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user