1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-09 18:26:32 +02:00

[feature/migrations] Store state properly and send past result to callable

Fix return on module add

PHPBB3-9737
This commit is contained in:
Nathan Guse
2013-01-09 15:28:08 -06:00
parent e3737978f7
commit edf693e3bd
2 changed files with 44 additions and 16 deletions

View File

@@ -208,11 +208,11 @@ class phpbb_db_migration_tool_module implements phpbb_db_migration_tool_interfac
);
// Run the "manual" way with the data we've collected.
$result .= ((isset($data['spacer'])) ? $data['spacer'] : '<br />') . $this->add($class, $parent, $new_module);
$this->add($class, $parent, $new_module);
}
}
return $result;
return;
}
// The "manual" way