1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-21 06:53:49 +02:00

[ticket/15795] Fix broken migration, $config is not a method

PHPBB3-15795
This commit is contained in:
Matt Friedman 2018-09-18 09:18:58 -07:00
parent fa6a6a8fcf
commit f644cc4ba0

View File

@ -17,7 +17,7 @@ class extensions_composer_2 extends \phpbb\db\migration\migration
{
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 = array_unique($repositories);