]> source.dussan.org Git - nextcloud-server.git/commitdiff
Correct name in Console Application.php 737/head
authorblizzz <blizzz@arthur-schiwon.de>
Thu, 4 Aug 2016 17:17:13 +0000 (19:17 +0200)
committerGitHub <noreply@github.com>
Thu, 4 Aug 2016 17:17:13 +0000 (19:17 +0200)
see changes :)

lib/private/Console/Application.php

index b3e7003c82cba56a629ab5a02f053e551bc04207..cad16a070c8dc9132dccf626b8af16ebdb34168f 100644 (file)
@@ -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') {