mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-08 16:45:19 +02: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
@ -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…
x
Reference in New Issue
Block a user