mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
Merge pull request #5364 from VSEphpbb/ticket/15795
[ticket/15795] Fix broken migration, $config is not a method
This commit is contained in:
commit
cbb56a9e3d
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ class extensions_composer_2 extends \phpbb\db\migration\migration
|
||||||
{
|
{
|
||||||
public function update_data()
|
public function update_data()
|
||||||
{
|
{
|
||||||
$repositories = json_decode($this->config('exts_composer_repositories'), true);
|
$repositories = json_decode($this->config['exts_composer_repositories'], true);
|
||||||
$repositories[] = 'https://satis.phpbb.com';
|
$repositories[] = 'https://satis.phpbb.com';
|
||||||
$repositories = array_unique($repositories);
|
$repositories = array_unique($repositories);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue