aboutsummaryrefslogtreecommitdiffstats
path: root/lib/base.php
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2016-08-04 12:48:25 +0200
committerJan-Christoph Borchardt <hey@jancborchardt.net>2016-08-04 12:48:25 +0200
commit835dc59d6aca0ab372383184d2a8ebc7e72f67b0 (patch)
tree39fd96b3c98d29844f5378e7bc6b322d934c51a5 /lib/base.php
parent2f9725469d2984851cc441a7c3b8abb525d26390 (diff)
downloadnextcloud-server-835dc59d6aca0ab372383184d2a8ebc7e72f67b0.tar.gz
nextcloud-server-835dc59d6aca0ab372383184d2a8ebc7e72f67b0.zip
reduce info on update screens, introduce button to refresh
Diffstat (limited to 'lib/base.php')
-rw-r--r--lib/base.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/base.php b/lib/base.php
index d22490ca5dc..4bb7052aa5d 100644
--- a/lib/base.php
+++ b/lib/base.php
@@ -359,7 +359,7 @@ class OC {
// render error page
$template = new OC_Template('', 'update.use-cli', 'guest');
- $template->assign('productName', 'owncloud'); // for now
+ $template->assign('productName', 'nextcloud'); // for now
$template->assign('version', OC_Util::getVersionString());
$template->assign('tooBig', $tooBig);
@@ -390,7 +390,7 @@ class OC {
$ocVersion = \OCP\Util::getVersion();
$tmpl->assign('appsToUpgrade', $appManager->getAppsNeedingUpgrade($ocVersion));
$tmpl->assign('incompatibleAppsList', $appManager->getIncompatibleApps($ocVersion));
- $tmpl->assign('productName', 'ownCloud'); // for now
+ $tmpl->assign('productName', 'Nextcloud'); // for now
$tmpl->assign('oldTheme', $oldTheme);
$tmpl->printPage();
}