diff options
author | Oliver Schramm <oliver.schramm97@gmail.com> | 2016-08-10 14:55:39 +0200 |
---|---|---|
committer | Oliver Schramm <oliver.schramm97@gmail.com> | 2016-08-11 01:09:11 +0200 |
commit | 8e1461ca61e3f452935a1253d3afe65e7322d6bc (patch) | |
tree | 24b40c1b339cb7a78ee52f834fffdf4d97b067de /phpBB/phpbb/db/migration/tool/config_text.php | |
parent | 9fb649793de65a598615c542861281ff15a60439 (diff) | |
download | forums-8e1461ca61e3f452935a1253d3afe65e7322d6bc.tar forums-8e1461ca61e3f452935a1253d3afe65e7322d6bc.tar.gz forums-8e1461ca61e3f452935a1253d3afe65e7322d6bc.tar.bz2 forums-8e1461ca61e3f452935a1253d3afe65e7322d6bc.tar.xz forums-8e1461ca61e3f452935a1253d3afe65e7322d6bc.zip |
[ticket/14742] Avoid loop while reverting data
This combines reverted updata_data and revert_data into a single array.
PHPBB3-14742
Diffstat (limited to 'phpBB/phpbb/db/migration/tool/config_text.php')
-rw-r--r-- | phpBB/phpbb/db/migration/tool/config_text.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/tool/config_text.php b/phpBB/phpbb/db/migration/tool/config_text.php index bf8ac55023..21b8a8b3a0 100644 --- a/phpBB/phpbb/db/migration/tool/config_text.php +++ b/phpBB/phpbb/db/migration/tool/config_text.php @@ -115,6 +115,11 @@ class config_text implements \phpbb\db\migration\tool\tool_interface $arguments[] = ''; } break; + + case 'reverse': + // It's like double negative + $call = array_shift($arguments); + break; } if ($call) |