aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathaniel Guse <nathaniel.guse@gmail.com>2013-02-26 19:25:51 -0600
committerNathaniel Guse <nathaniel.guse@gmail.com>2013-02-26 19:25:51 -0600
commitf9cbf5b4c7ea4f4eb1438d98ccc1cb71b0fea2af (patch)
treef620130fd9a38f7dccd1a24b157186c5d8db857a
parent80bd78a5e5e1069773c05073cd47662a311bda79 (diff)
downloadforums-f9cbf5b4c7ea4f4eb1438d98ccc1cb71b0fea2af.tar
forums-f9cbf5b4c7ea4f4eb1438d98ccc1cb71b0fea2af.tar.gz
forums-f9cbf5b4c7ea4f4eb1438d98ccc1cb71b0fea2af.tar.bz2
forums-f9cbf5b4c7ea4f4eb1438d98ccc1cb71b0fea2af.tar.xz
forums-f9cbf5b4c7ea4f4eb1438d98ccc1cb71b0fea2af.zip
[ticket/11369] Reverting migration throws error
String is attempted to be unserialized PHPBB3-11369
-rw-r--r--phpBB/includes/db/migrator.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/db/migrator.php b/phpBB/includes/db/migrator.php
index 74f71775f3..d6bcae6ca6 100644
--- a/phpBB/includes/db/migrator.php
+++ b/phpBB/includes/db/migrator.php
@@ -434,7 +434,7 @@ class phpbb_db_migrator
}
else
{
- $result = $this->process_data_step($migration->revert_data(), $state['migration_data_state'], false);
+ $result = $this->process_data_step($migration->revert_data(), '', false);
$state['migration_data_state'] = ($result === true) ? '' : $result;
$state['migration_data_done'] = ($result === true) ? false : true;