File: phpbb/db/migration/profilefield_base_migration.php
Unmodified
Added
Modified
Removed
Line 39 | Line 39 |
---|
protected $profilefield_language_data;
protected $user_column_name;
|
protected $profilefield_language_data;
protected $user_column_name;
|
| private $profile_row;
|
public function effectively_installed() {
| public function effectively_installed() {
|
Line 234 | Line 236 |
---|
protected function get_insert_sql_array() {
|
protected function get_insert_sql_array() {
|
static $profile_row;
if ($profile_row === null)
| if ($this->profile_row === null)
|
{ /* @var $manager \phpbb\profilefields\manager */ $manager = $this->container->get('profilefields.manager');
|
{ /* @var $manager \phpbb\profilefields\manager */ $manager = $this->container->get('profilefields.manager');
|
$profile_row = $manager->build_insert_sql_array(array());
| $this->profile_row = $manager->build_insert_sql_array(array());
|
}
|
}
|
return $profile_row;
| return $this->profile_row;
|
} }
| } }
|