1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/15276] Change adapter to provider in config_name

PHPBB3-15276
This commit is contained in:
Rubén Calvo
2017-07-28 11:55:35 +02:00
parent 89f4e12f85
commit 286b1bbe33
2 changed files with 2 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ class storage_avatar extends \phpbb\db\migration\migration
public function update_data()
{
return array(
array('config.add', array('storage\\avatar\\adapter', \phpbb\storage\provider\local::class)),
array('config.add', array('storage\\avatar\\provider', \phpbb\storage\provider\local::class)),
array('config.add', array('storage\\avatar\\config\\path', $this->config['avatar_path'])),
array('config.remove', array('avatar_path')),
);