aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorNathan Guse <nathaniel.guse@gmail.com>2013-11-02 11:38:22 -0700
committerNathan Guse <nathaniel.guse@gmail.com>2013-11-02 11:38:22 -0700
commit4d6c7223b4fa8946a40ac5779bfa20d4a561a574 (patch)
tree831ab691843057c5d6bb3097a01b75d2f0b6cb2f /phpBB
parent8a78699f6c5e51465e8d066a4683b5f09a31eea1 (diff)
parente8a3028ea6505942f6f192105b75dabc177dae44 (diff)
downloadforums-4d6c7223b4fa8946a40ac5779bfa20d4a561a574.tar
forums-4d6c7223b4fa8946a40ac5779bfa20d4a561a574.tar.gz
forums-4d6c7223b4fa8946a40ac5779bfa20d4a561a574.tar.bz2
forums-4d6c7223b4fa8946a40ac5779bfa20d4a561a574.tar.xz
forums-4d6c7223b4fa8946a40ac5779bfa20d4a561a574.zip
Merge pull request #1847 from nickvergessen/ticket/11995
Ticket/11995 Fix Revert of config.remove migration
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/phpbb/db/migration/tool/config.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/tool/config.php b/phpBB/phpbb/db/migration/tool/config.php
index f2149dc59a..36a1931f4e 100644
--- a/phpBB/phpbb/db/migration/tool/config.php
+++ b/phpBB/phpbb/db/migration/tool/config.php
@@ -130,6 +130,10 @@ class config implements \phpbb\db\migration\tool\tool_interface
case 'remove':
$call = 'add';
+ if (sizeof($arguments) == 1)
+ {
+ $arguments[] = '';
+ }
break;
case 'update_if_equals':