diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2016-08-04 12:48:25 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2016-08-04 12:48:25 +0200 |
commit | 835dc59d6aca0ab372383184d2a8ebc7e72f67b0 (patch) | |
tree | 39fd96b3c98d29844f5378e7bc6b322d934c51a5 /lib/base.php | |
parent | 2f9725469d2984851cc441a7c3b8abb525d26390 (diff) | |
download | nextcloud-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.php | 4 |
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(); } |