From 0417482d55660fe5b074ad236f41e3d158d04abb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Calvo?= Date: Thu, 20 Jul 2017 05:27:33 +0200 Subject: [PATCH] [ticket/15276] Fix migration PHPBB3-15276 --- phpBB/phpbb/db/migration/data/v330/storage_avatar.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/phpBB/phpbb/db/migration/data/v330/storage_avatar.php b/phpBB/phpbb/db/migration/data/v330/storage_avatar.php index 5eac0b8346..3d415ee558 100644 --- a/phpBB/phpbb/db/migration/data/v330/storage_avatar.php +++ b/phpBB/phpbb/db/migration/data/v330/storage_avatar.php @@ -13,14 +13,12 @@ namespace phpbb\db\migration\data\v330; -use \phpbb\storage\provider; - class storage_avatar extends \phpbb\db\migration\migration { public function update_data() { return array( - array('config.add', array('storage\\avatar\\adapter', provider\local::class)), + array('config.add', array('storage\\avatar\\adapter', \phpbb\storage\provider\local::class)), array('config.add', array('storage\\avatar\\config\\path', $this->config['avatar_path'])), array('config.remove', array('avatar_path')), );