diff options
author | blizzz <blizzz@arthur-schiwon.de> | 2016-08-04 19:17:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-04 19:17:13 +0200 |
commit | 329c714a7e87c9aea51a75b0200916e4a5031504 (patch) | |
tree | dd0da861540859896e33312a1a4e6447ec4a1f37 /lib/private/Console | |
parent | b5c2b5e882cffb32997b7016d938ae93a62f557e (diff) | |
download | nextcloud-server-329c714a7e87c9aea51a75b0200916e4a5031504.tar.gz nextcloud-server-329c714a7e87c9aea51a75b0200916e4a5031504.zip |
Correct name in Console Application.php
see changes :)
Diffstat (limited to 'lib/private/Console')
-rw-r--r-- | lib/private/Console/Application.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/private/Console/Application.php b/lib/private/Console/Application.php index b3e7003c82c..cad16a070c8 100644 --- a/lib/private/Console/Application.php +++ b/lib/private/Console/Application.php @@ -88,10 +88,10 @@ class Application { require_once __DIR__ . '/../../../core/register_command.php'; if ($this->config->getSystemValue('installed', false)) { if (\OCP\Util::needUpgrade()) { - $output->writeln("ownCloud or one of the apps require upgrade - only a limited number of commands are available"); + $output->writeln("Nextcloud or one of the apps require upgrade - only a limited number of commands are available"); $output->writeln("You may use your browser or the occ upgrade command to do the upgrade"); } elseif ($this->config->getSystemValue('maintenance', false)) { - $output->writeln("ownCloud is in maintenance mode - no app have been loaded"); + $output->writeln("Nextcloud is in maintenance mode - no app have been loaded"); } else { OC_App::loadApps(); foreach (\OC::$server->getAppManager()->getInstalledApps() as $app) { @@ -107,7 +107,7 @@ class Application { } } } else { - $output->writeln("ownCloud is not installed - only a limited number of commands are available"); + $output->writeln("Nextcloud is not installed - only a limited number of commands are available"); } $input = new ArgvInput(); if ($input->getFirstArgument() !== 'check') { |