diff options
author | Andreas Gohr <andi@splitbrain.org> | 2014-03-20 19:43:48 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2014-03-20 19:43:48 +0100 |
commit | 99c6702358b65e9f98d1799d261b4dcc7b88d414 (patch) | |
tree | 8db594e4972269de99ebc918c864ee45c0cc7a41 /inc | |
parent | 193eb41176fb95f01489814bcc879dc500257c84 (diff) | |
download | rpg-99c6702358b65e9f98d1799d261b4dcc7b88d414.tar.gz rpg-99c6702358b65e9f98d1799d261b4dcc7b88d414.tar.bz2 |
removed superflous argument
Diffstat (limited to 'inc')
-rw-r--r-- | inc/cli.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/cli.php b/inc/cli.php index e8c2c9f3e..84aad3411 100644 --- a/inc/cli.php +++ b/inc/cli.php @@ -74,7 +74,7 @@ abstract class DokuCLI { $this->colors->disable(); } if($this->options->getOpt('help')) { - echo $this->options->help($this->bin); + echo $this->options->help(); exit(0); } |