diff options
author | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2016-02-05 11:58:51 +0100 |
---|---|---|
committer | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2016-02-05 15:56:28 +0100 |
commit | b40f9ce6e1df58f80d5e8878c9ff47178862d443 (patch) | |
tree | 6901a2d479a3218022c62897a720bb63ed42b380 /phpBB/phpbb/db | |
parent | 7e0878bedb89ec3f43d376682af5c01e65d84c00 (diff) | |
download | forums-b40f9ce6e1df58f80d5e8878c9ff47178862d443.tar forums-b40f9ce6e1df58f80d5e8878c9ff47178862d443.tar.gz forums-b40f9ce6e1df58f80d5e8878c9ff47178862d443.tar.bz2 forums-b40f9ce6e1df58f80d5e8878c9ff47178862d443.tar.xz forums-b40f9ce6e1df58f80d5e8878c9ff47178862d443.zip |
[ticket/14453] Add missing dependency in the text_reparser migration
PHPBB3-14453
Diffstat (limited to 'phpBB/phpbb/db')
-rw-r--r-- | phpBB/phpbb/db/migration/data/v320/text_reparser.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/phpBB/phpbb/db/migration/data/v320/text_reparser.php b/phpBB/phpbb/db/migration/data/v320/text_reparser.php index 1d73b74a76..8673a3488a 100644 --- a/phpBB/phpbb/db/migration/data/v320/text_reparser.php +++ b/phpBB/phpbb/db/migration/data/v320/text_reparser.php @@ -17,7 +17,10 @@ class text_reparser extends \phpbb\db\migration\container_aware_migration { static public function depends_on() { - return array('\phpbb\db\migration\data\v310\contact_admin_form'); + return array( + '\phpbb\db\migration\data\v310\contact_admin_form', + '\phpbb\db\migration\data\v320\allowed_schemes_links', + ); } public function effectively_installed() |