summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2016-08-01 11:15:22 +0200
committerGitHub <noreply@github.com>2016-08-01 11:15:22 +0200
commitffd29e9ec52b595a5e9fd48daf62e154ce9e19ed (patch)
tree2861e7d973f17547cafb3ee2e026962cfcf34460
parent8ef5fcec1dbd2755501dbb92d713990fd40714ec (diff)
parent06fd2e7d5a64a404632e6863527d1aff014e6ebb (diff)
downloadnextcloud-server-ffd29e9ec52b595a5e9fd48daf62e154ce9e19ed.tar.gz
nextcloud-server-ffd29e9ec52b595a5e9fd48daf62e154ce9e19ed.zip
Merge pull request #672 from sndrr/occ-rebrand-to-nextcloud
Occ rebrand to nextcloud
-rw-r--r--core/Command/Db/ConvertType.php2
-rw-r--r--core/Command/Upgrade.php6
2 files changed, 4 insertions, 4 deletions
diff --git a/core/Command/Db/ConvertType.php b/core/Command/Db/ConvertType.php
index 6e15f9afbc7..ccf5c0685cb 100644
--- a/core/Command/Db/ConvertType.php
+++ b/core/Command/Db/ConvertType.php
@@ -61,7 +61,7 @@ class ConvertType extends Command {
protected function configure() {
$this
->setName('db:convert-type')
- ->setDescription('Convert the ownCloud database to the newly configured one')
+ ->setDescription('Convert the Nextcloud database to the newly configured one')
->addArgument(
'type',
InputArgument::REQUIRED,
diff --git a/core/Command/Upgrade.php b/core/Command/Upgrade.php
index 952034fd222..caf92492d90 100644
--- a/core/Command/Upgrade.php
+++ b/core/Command/Upgrade.php
@@ -299,8 +299,8 @@ class Upgrade extends Command {
return self::ERROR_SUCCESS;
} else if($this->config->getSystemValue('maintenance', false)) {
- //Possible scenario: ownCloud core is updated but an app failed
- $output->writeln('<warning>ownCloud is in maintenance mode</warning>');
+ //Possible scenario: Nextcloud core is updated but an app failed
+ $output->writeln('<warning>Nextcloud is in maintenance mode</warning>');
$output->write('<comment>Maybe an upgrade is already in process. Please check the '
. 'logfile (data/nextcloud.log). If you want to re-run the '
. 'upgrade procedure, remove the "maintenance mode" from '
@@ -308,7 +308,7 @@ class Upgrade extends Command {
, true);
return self::ERROR_MAINTENANCE_MODE;
} else {
- $output->writeln('<info>ownCloud is already latest version</info>');
+ $output->writeln('<info>Nextcloud is already latest version</info>');
return self::ERROR_UP_TO_DATE;
}
}