mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-09 04:48:53 +00:00
[feature/migrations] Fix unfulfillable function
Returned unfulfillable name in the wrong place previously PHPBB3-11351
This commit is contained in:
parent
f18b096df9
commit
f9a1b27a99
1 changed files with 2 additions and 2 deletions
|
@ -681,12 +681,12 @@ class phpbb_db_migrator
|
|||
{
|
||||
if (isset($this->migration_state[$name]))
|
||||
{
|
||||
return $name;
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!class_exists($name))
|
||||
{
|
||||
return true;
|
||||
return $name;
|
||||
}
|
||||
|
||||
$migration = $this->get_migration($name);
|
||||
|
|
Loading…
Add table
Reference in a new issue