diff options
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/console/command/config/set.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/phpBB/phpbb/console/command/config/set.php b/phpBB/phpbb/console/command/config/set.php index 51d3efad1e..9d471a96ad 100644 --- a/phpBB/phpbb/console/command/config/set.php +++ b/phpBB/phpbb/console/command/config/set.php @@ -45,7 +45,6 @@ class set extends command $value = $input->getArgument('value'); $use_cache = !$input->getOption('dynamic'); - var_dump($key, $value, $use_cache); $this->config->set($key, $value, $use_cache); $output->writeln("<info>Successfully set config $key</info>"); |