aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/console/command
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2013-11-27 15:16:40 +0100
committerJoas Schilling <nickvergessen@gmx.de>2013-11-27 15:16:40 +0100
commitde727b80e285970c0e770c8597c6b56adb513a4d (patch)
treecdb118cdc9d5ac788b7f66b08414769ad7df3305 /phpBB/phpbb/console/command
parente6749261f1797cd4bb9b93398ed92ae5d9c32b26 (diff)
downloadforums-de727b80e285970c0e770c8597c6b56adb513a4d.tar
forums-de727b80e285970c0e770c8597c6b56adb513a4d.tar.gz
forums-de727b80e285970c0e770c8597c6b56adb513a4d.tar.bz2
forums-de727b80e285970c0e770c8597c6b56adb513a4d.tar.xz
forums-de727b80e285970c0e770c8597c6b56adb513a4d.zip
[ticket/12039] Fix option descriptions
PHPBB3-12039
Diffstat (limited to 'phpBB/phpbb/console/command')
-rw-r--r--phpBB/phpbb/console/command/config/delete.php2
-rw-r--r--phpBB/phpbb/console/command/config/increment.php2
-rw-r--r--phpBB/phpbb/console/command/config/set_atomic.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/phpbb/console/command/config/delete.php b/phpBB/phpbb/console/command/config/delete.php
index 2b53f27098..af3d189445 100644
--- a/phpBB/phpbb/console/command/config/delete.php
+++ b/phpBB/phpbb/console/command/config/delete.php
@@ -19,7 +19,7 @@ class delete extends command
{
$this
->setName('config:delete')
- ->setDescription("Sets a configuration option's value")
+ ->setDescription("Deletes a configuration option")
->addArgument(
'key',
InputArgument::REQUIRED,
diff --git a/phpBB/phpbb/console/command/config/increment.php b/phpBB/phpbb/console/command/config/increment.php
index 06b2772230..5f5d03b50b 100644
--- a/phpBB/phpbb/console/command/config/increment.php
+++ b/phpBB/phpbb/console/command/config/increment.php
@@ -19,7 +19,7 @@ class increment extends command
{
$this
->setName('config:increment')
- ->setDescription("Sets a configuration option's value")
+ ->setDescription("Increment a configuration option's value")
->addArgument(
'key',
InputArgument::REQUIRED,
diff --git a/phpBB/phpbb/console/command/config/set_atomic.php b/phpBB/phpbb/console/command/config/set_atomic.php
index 1393549a1e..ef2cb5c3e1 100644
--- a/phpBB/phpbb/console/command/config/set_atomic.php
+++ b/phpBB/phpbb/console/command/config/set_atomic.php
@@ -19,7 +19,7 @@ class set_atomic extends command
{
$this
->setName('config:set-atomic')
- ->setDescription("Sets a configuration option's value")
+ ->setDescription("Sets a configuration option's value only if the old_value matches the current configuration value or the configuration value does not exist yet.")
->addArgument(
'key',
InputArgument::REQUIRED,