diff options
author | Morris Jobke <hey@morrisjobke.de> | 2016-10-10 09:22:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-10 09:22:43 +0200 |
commit | 195fc041dabec4dc4d60ea1892d21d673e829b8b (patch) | |
tree | e82fd2291014675048330ae228d09a05e7f166dd /core | |
parent | ce9e33bd3cdf179ffa276c67101934d82cb4c0e7 (diff) | |
parent | 0c2b17c80f54027aaebbc43b8efb21fdaffe8d45 (diff) | |
download | nextcloud-server-195fc041dabec4dc4d60ea1892d21d673e829b8b.tar.gz nextcloud-server-195fc041dabec4dc4d60ea1892d21d673e829b8b.zip |
Merge pull request #1663 from nextcloud/dont-reparse-info-xml
Dont reparse info xml + cache AppInfo XML
Diffstat (limited to 'core')
-rw-r--r-- | core/register_command.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/register_command.php b/core/register_command.php index 23621e54f8d..a6da3cbd899 100644 --- a/core/register_command.php +++ b/core/register_command.php @@ -36,7 +36,7 @@ $application->add(new \Stecman\Component\Symfony\Console\BashCompletion\CompletionCommand()); $application->add(new OC\Core\Command\Status); $application->add(new OC\Core\Command\Check(\OC::$server->getConfig())); -$infoParser = new \OC\App\InfoParser(\OC::$server->getURLGenerator()); +$infoParser = new \OC\App\InfoParser(); $application->add(new OC\Core\Command\App\CheckCode($infoParser)); $application->add(new OC\Core\Command\L10n\CreateJs()); $application->add(new \OC\Core\Command\Integrity\SignApp( |