aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/db/migration/tool
diff options
context:
space:
mode:
authorNathan Guse <nathaniel.guse@gmail.com>2013-01-09 15:28:08 -0600
committerNathan Guse <nathaniel.guse@gmail.com>2013-01-09 16:44:09 -0600
commitedf693e3bd4352ab75c62311b34f12fc98e7ef63 (patch)
tree07fc0abb6f9bce8e0b7f862989fd1ba612ceea1d /phpBB/includes/db/migration/tool
parente3737978f76a962385a26de910959607d0ae0d30 (diff)
downloadforums-edf693e3bd4352ab75c62311b34f12fc98e7ef63.tar
forums-edf693e3bd4352ab75c62311b34f12fc98e7ef63.tar.gz
forums-edf693e3bd4352ab75c62311b34f12fc98e7ef63.tar.bz2
forums-edf693e3bd4352ab75c62311b34f12fc98e7ef63.tar.xz
forums-edf693e3bd4352ab75c62311b34f12fc98e7ef63.zip
[feature/migrations] Store state properly and send past result to callable
Fix return on module add PHPBB3-9737
Diffstat (limited to 'phpBB/includes/db/migration/tool')
-rw-r--r--phpBB/includes/db/migration/tool/module.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/db/migration/tool/module.php b/phpBB/includes/db/migration/tool/module.php
index f1b527bf21..70a246849a 100644
--- a/phpBB/includes/db/migration/tool/module.php
+++ b/phpBB/includes/db/migration/tool/module.php
@@ -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