Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsgiehl <stefan@piwik.org>2014-05-21 16:54:18 +0400
committersgiehl <stefan@piwik.org>2014-05-21 16:54:18 +0400
commit5432f75b7d2e9a7532a044283e94e3bccec5e9a9 (patch)
treec992b74b28beb3f53db2d58f4024f29e644ffd05 /plugins/LanguagesManager/Commands
parentb848f8b4b64d254b164a777172a97529d8352da8 (diff)
small fix
Diffstat (limited to 'plugins/LanguagesManager/Commands')
-rw-r--r--plugins/LanguagesManager/Commands/FetchFromOTrance.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/LanguagesManager/Commands/FetchFromOTrance.php b/plugins/LanguagesManager/Commands/FetchFromOTrance.php
index a7d7caf411..b313acc76d 100644
--- a/plugins/LanguagesManager/Commands/FetchFromOTrance.php
+++ b/plugins/LanguagesManager/Commands/FetchFromOTrance.php
@@ -127,7 +127,7 @@ class FetchFromOTrance extends ConsoleCommand
$unzipper = Unzip::factory('tar.gz', self::getDownloadPath() . DIRECTORY_SEPARATOR . 'language_pack.tar.gz');
$unzipper->extract(self::getDownloadPath());
- if (!$input->hasOption('keep-english')) {
+ if (!$input->getOption('keep-english')) {
@unlink(self::getDownloadPath() . DIRECTORY_SEPARATOR . 'en.php');
@unlink(self::getDownloadPath() . DIRECTORY_SEPARATOR . 'en.json');
}