diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2016-08-08 11:23:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-08 11:23:31 +0200 |
commit | fa352a81a5d54fb5530c6a17be6d2847025584eb (patch) | |
tree | b27914051fddd5d43dde4997f5533f2ff0b2bbf0 /lib | |
parent | 727cd6aad0cc01570cbc74f8a589836e1cfb816f (diff) | |
parent | 835dc59d6aca0ab372383184d2a8ebc7e72f67b0 (diff) | |
download | nextcloud-server-fa352a81a5d54fb5530c6a17be6d2847025584eb.tar.gz nextcloud-server-fa352a81a5d54fb5530c6a17be6d2847025584eb.zip |
Merge pull request #728 from nextcloud/update-styling
Design fixes for updates
Diffstat (limited to 'lib')
-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(); } |