aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/console
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2013-12-02 13:26:49 +0100
committerJoas Schilling <nickvergessen@gmx.de>2013-12-02 13:26:49 +0100
commit86e629e5338b1b21d3908eb2c8a01fe84ac18159 (patch)
treec3adefd9f1b3d174558f7a9666a44fc399dc4e64 /phpBB/phpbb/console
parentde727b80e285970c0e770c8597c6b56adb513a4d (diff)
downloadforums-86e629e5338b1b21d3908eb2c8a01fe84ac18159.tar
forums-86e629e5338b1b21d3908eb2c8a01fe84ac18159.tar.gz
forums-86e629e5338b1b21d3908eb2c8a01fe84ac18159.tar.bz2
forums-86e629e5338b1b21d3908eb2c8a01fe84ac18159.tar.xz
forums-86e629e5338b1b21d3908eb2c8a01fe84ac18159.zip
[ticket/12039] Remove debug code
PHPBB3-12039
Diffstat (limited to 'phpBB/phpbb/console')
-rw-r--r--phpBB/phpbb/console/command/config/set.php1
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>");