aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-06-04 15:34:11 +0200
committerTristan Darricau <github@nicofuma.fr>2014-06-04 15:34:11 +0200
commita14d16172c26fd8f849be4d3afcaac93b6dc4086 (patch)
treecf8c5bca80606fae4388a44defb769a024228a15 /phpBB
parent6c9518ea3232d02605ea4bd57e1bf56a91d05855 (diff)
downloadforums-a14d16172c26fd8f849be4d3afcaac93b6dc4086.tar
forums-a14d16172c26fd8f849be4d3afcaac93b6dc4086.tar.gz
forums-a14d16172c26fd8f849be4d3afcaac93b6dc4086.tar.bz2
forums-a14d16172c26fd8f849be4d3afcaac93b6dc4086.tar.xz
forums-a14d16172c26fd8f849be4d3afcaac93b6dc4086.zip
[ticket/12655] Set the arguments of \phpbb\console\application as required
PHPBB3-12655
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/phpbb/console/application.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/console/application.php b/phpBB/phpbb/console/application.php
index 00477ee7d7..eb8094e65f 100644
--- a/phpBB/phpbb/console/application.php
+++ b/phpBB/phpbb/console/application.php
@@ -27,7 +27,7 @@ class application extends \Symfony\Component\Console\Application
* @param string $version The version of the application
* @param \phpbb\user $user The user which runs the application (used for translation)
*/
- public function __construct($name = 'UNKNOWN', $version = 'UNKNOWN', \phpbb\user $user)
+ public function __construct($name, $version, \phpbb\user $user)
{
parent::__construct($name, $version);