diff options
| author | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-02-26 19:25:51 -0600 |
|---|---|---|
| committer | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-02-26 19:25:51 -0600 |
| commit | f9cbf5b4c7ea4f4eb1438d98ccc1cb71b0fea2af (patch) | |
| tree | f620130fd9a38f7dccd1a24b157186c5d8db857a | |
| parent | 80bd78a5e5e1069773c05073cd47662a311bda79 (diff) | |
| download | forums-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.php | 2 |
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; |
