diff options
author | Julius Härtl <jus@bitgrid.net> | 2021-03-05 10:04:09 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2021-06-16 11:42:53 +0200 |
commit | c0474ba3644fc94674788bf21dd3e22d564e019c (patch) | |
tree | e4709fae17df27be50696c314ec75cb469b99e26 /core/Controller/WhatsNewController.php | |
parent | 4673b54a2cfcdf7976fcd295b98d72858619ffad (diff) | |
download | nextcloud-server-c0474ba3644fc94674788bf21dd3e22d564e019c.tar.gz nextcloud-server-c0474ba3644fc94674788bf21dd3e22d564e019c.zip |
Use product name in places where it is appropriate rather than the instance name
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'core/Controller/WhatsNewController.php')
-rw-r--r-- | core/Controller/WhatsNewController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Controller/WhatsNewController.php b/core/Controller/WhatsNewController.php index f316c62c973..12024dec030 100644 --- a/core/Controller/WhatsNewController.php +++ b/core/Controller/WhatsNewController.php @@ -89,7 +89,7 @@ class WhatsNewController extends OCSController { $whatsNew = $this->whatsNewService->getChangesForVersion($currentVersion); $resultData = [ 'changelogURL' => $whatsNew['changelogURL'], - 'product' => $this->defaults->getName(), + 'product' => $this->defaults->getProductName(), 'version' => $currentVersion, ]; do { |