mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Merge pull request #4163 from Nicofuma/ticket/14453
[ticket/14453] Add missing dependency in the text_reparser migration * Nicofuma/ticket/14453: [ticket/14453] Add missing dependency in the text_reparser migration
This commit is contained in:
commit
e2440bad17
1 changed files with 4 additions and 1 deletions
|
@ -17,7 +17,10 @@ class text_reparser extends \phpbb\db\migration\container_aware_migration
|
||||||
{
|
{
|
||||||
static public function depends_on()
|
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()
|
public function effectively_installed()
|
||||||
|
|
Loading…
Add table
Reference in a new issue