diff options
author | Joas Schilling <coding@schilljs.com> | 2016-08-05 09:17:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-05 09:17:34 +0200 |
commit | 84e6b8d9d05f7e481276090101ddf77f1ab3cfdf (patch) | |
tree | 75263f38d7e115beb3bf8b41b1ac361473166e84 /lib | |
parent | c44c9a55f48291c2a50e1a3a224226d0bc915631 (diff) | |
parent | 329c714a7e87c9aea51a75b0200916e4a5031504 (diff) | |
download | nextcloud-server-84e6b8d9d05f7e481276090101ddf77f1ab3cfdf.tar.gz nextcloud-server-84e6b8d9d05f7e481276090101ddf77f1ab3cfdf.zip |
Merge pull request #737 from nextcloud/blizzz-fix-name-console
Correct name in Console Application.php
Diffstat (limited to 'lib')
-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') { |