diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2016-06-20 22:43:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-20 22:43:28 +0200 |
commit | 0236535fd3e98a23a1fd3d4adfa472050a6c146e (patch) | |
tree | 4ecf67ec75117a43a009d426f95444292dcd2b36 /lib/private/console | |
parent | 9a0b78e757471953301a0092d113802bce2097d8 (diff) | |
parent | 851b277a8e5aa7a2c776f96c4ee0c727713309ff (diff) | |
download | nextcloud-server-9.0.51.tar.gz nextcloud-server-9.0.51.zip |
Merge pull request #178 from nextcloud/fix-itv9.0.51
[stable9] Branding
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 7f12db4eca6..d23f41f487e 100644 --- a/lib/private/console/application.php +++ b/lib/private/console/application.php @@ -87,10 +87,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) { @@ -106,7 +106,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') { |