diff options
author | Oliver Schramm <oliver.schramm97@gmail.com> | 2016-08-20 22:38:45 +0200 |
---|---|---|
committer | Oliver Schramm <oliver.schramm97@gmail.com> | 2016-08-20 22:38:45 +0200 |
commit | 88384a1e6313f827a098fcd90e3a7209cc6bb204 (patch) | |
tree | e3938cfa2d2e1b5aa8a0c061d153fde87c4dd6e7 /phpBB/phpbb/db/migration/tool | |
parent | 723d9d8e4c9f397eab7af77e6e6bd851354a9dcd (diff) | |
parent | 773f6d08a5f039eb0829886a6283a7ce1d97051e (diff) | |
download | forums-88384a1e6313f827a098fcd90e3a7209cc6bb204.tar forums-88384a1e6313f827a098fcd90e3a7209cc6bb204.tar.gz forums-88384a1e6313f827a098fcd90e3a7209cc6bb204.tar.bz2 forums-88384a1e6313f827a098fcd90e3a7209cc6bb204.tar.xz forums-88384a1e6313f827a098fcd90e3a7209cc6bb204.zip |
Merge branch 'ticket/14742' into ticket/14742-32x
Conflicts:
phpBB/phpbb/db/migrator.php
Diffstat (limited to 'phpBB/phpbb/db/migration/tool')
-rw-r--r-- | phpBB/phpbb/db/migration/tool/config.php | 2 | ||||
-rw-r--r-- | phpBB/phpbb/db/migration/tool/config_text.php | 2 | ||||
-rw-r--r-- | phpBB/phpbb/db/migration/tool/module.php | 2 | ||||
-rw-r--r-- | phpBB/phpbb/db/migration/tool/permission.php | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/phpbb/db/migration/tool/config.php b/phpBB/phpbb/db/migration/tool/config.php index 2a76409db5..33aa8ff026 100644 --- a/phpBB/phpbb/db/migration/tool/config.php +++ b/phpBB/phpbb/db/migration/tool/config.php @@ -152,7 +152,7 @@ class config implements \phpbb\db\migration\tool\tool_interface break; case 'reverse': - // It's like double negative + // Reversing a reverse is just the call itself $call = array_shift($arguments); break; } diff --git a/phpBB/phpbb/db/migration/tool/config_text.php b/phpBB/phpbb/db/migration/tool/config_text.php index 21b8a8b3a0..54b45f6f6d 100644 --- a/phpBB/phpbb/db/migration/tool/config_text.php +++ b/phpBB/phpbb/db/migration/tool/config_text.php @@ -117,7 +117,7 @@ class config_text implements \phpbb\db\migration\tool\tool_interface break; case 'reverse': - // It's like double negative + // Reversing a reverse is just the call itself $call = array_shift($arguments); break; } diff --git a/phpBB/phpbb/db/migration/tool/module.php b/phpBB/phpbb/db/migration/tool/module.php index bf992a6ff1..90ed63e2e6 100644 --- a/phpBB/phpbb/db/migration/tool/module.php +++ b/phpBB/phpbb/db/migration/tool/module.php @@ -445,7 +445,7 @@ class module implements \phpbb\db\migration\tool\tool_interface break; case 'reverse': - // It's like double negative + // Reversing a reverse is just the call itself $call = array_shift($arguments); break; } diff --git a/phpBB/phpbb/db/migration/tool/permission.php b/phpBB/phpbb/db/migration/tool/permission.php index 3a1e2e344b..9688420025 100644 --- a/phpBB/phpbb/db/migration/tool/permission.php +++ b/phpBB/phpbb/db/migration/tool/permission.php @@ -639,7 +639,7 @@ class permission implements \phpbb\db\migration\tool\tool_interface break; case 'reverse': - // It's like double negative + // Reversing a reverse is just the call itself $call = array_shift($arguments); break; } |