diff options
| author | Marc Alexander <admin@m-a-styles.de> | 2016-08-21 09:24:19 +0200 |
|---|---|---|
| committer | Marc Alexander <admin@m-a-styles.de> | 2016-08-21 09:24:19 +0200 |
| commit | 6bcc372af50e422a6f4956d54f63e1123bbf57cb (patch) | |
| tree | c74e52e9149793e90d5ab1f60e358130bb88427d /phpBB/phpbb/db/migration | |
| parent | 488fd8f54c1ef7f1703942477d014ac071e5cc56 (diff) | |
| parent | 773f6d08a5f039eb0829886a6283a7ce1d97051e (diff) | |
| download | forums-6bcc372af50e422a6f4956d54f63e1123bbf57cb.tar forums-6bcc372af50e422a6f4956d54f63e1123bbf57cb.tar.gz forums-6bcc372af50e422a6f4956d54f63e1123bbf57cb.tar.bz2 forums-6bcc372af50e422a6f4956d54f63e1123bbf57cb.tar.xz forums-6bcc372af50e422a6f4956d54f63e1123bbf57cb.zip | |
Merge pull request #4419 from Elsensee/ticket/14742
[ticket/14742] Further improvements to migrator
Diffstat (limited to 'phpBB/phpbb/db/migration')
| -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 a6baf40dc1..59719db9a4 100644 --- a/phpBB/phpbb/db/migration/tool/module.php +++ b/phpBB/phpbb/db/migration/tool/module.php @@ -456,7 +456,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; } |
