aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/db/migration/tool/module.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2016-08-13 23:13:07 +0200
committerMarc Alexander <admin@m-a-styles.de>2016-08-13 23:13:07 +0200
commit4466ef1bc4b66a4396054aa5e3c4eec9c97f231b (patch)
treedce8ad8a5dc05069ee1df7b5c08987129361d18e /phpBB/phpbb/db/migration/tool/module.php
parent55f98d0941e17b473015baf07026efabaf676916 (diff)
parent758fe20f4be7178fd4b9fd6ce48c5342cfcbce27 (diff)
downloadforums-4466ef1bc4b66a4396054aa5e3c4eec9c97f231b.tar
forums-4466ef1bc4b66a4396054aa5e3c4eec9c97f231b.tar.gz
forums-4466ef1bc4b66a4396054aa5e3c4eec9c97f231b.tar.bz2
forums-4466ef1bc4b66a4396054aa5e3c4eec9c97f231b.tar.xz
forums-4466ef1bc4b66a4396054aa5e3c4eec9c97f231b.zip
Merge pull request #4410 from Elsensee/ticket/14742-32x
[ticket/14742-32x] Improvements to migrator
Diffstat (limited to 'phpBB/phpbb/db/migration/tool/module.php')
-rw-r--r--phpBB/phpbb/db/migration/tool/module.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/tool/module.php b/phpBB/phpbb/db/migration/tool/module.php
index a5ed62fd65..bf992a6ff1 100644
--- a/phpBB/phpbb/db/migration/tool/module.php
+++ b/phpBB/phpbb/db/migration/tool/module.php
@@ -443,6 +443,11 @@ class module implements \phpbb\db\migration\tool\tool_interface
case 'remove':
$call = 'add';
break;
+
+ case 'reverse':
+ // It's like double negative
+ $call = array_shift($arguments);
+ break;
}
if ($call)