diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2023-10-04 08:49:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-04 08:49:25 +0200 |
commit | 4756807f2e72b1dcd8ba11e038bcd5e01d41044a (patch) | |
tree | d4c605dfc29c2a47bad4d6caf4caf7e3643db867 /lib | |
parent | 3f725824b1916896c04b1e9e3bf5cfa4ad4ad1ac (diff) | |
parent | 41370350f2c4c811cf04b72c44e34318feb2bbbf (diff) | |
download | nextcloud-server-4756807f2e72b1dcd8ba11e038bcd5e01d41044a.tar.gz nextcloud-server-4756807f2e72b1dcd8ba11e038bcd5e01d41044a.zip |
Merge pull request #40439 from Koc/feature/clickable-logo
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/TemplateLayout.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/private/TemplateLayout.php b/lib/private/TemplateLayout.php index cefa1f30876..e2504363257 100644 --- a/lib/private/TemplateLayout.php +++ b/lib/private/TemplateLayout.php @@ -189,6 +189,10 @@ class TemplateLayout extends \OC_Template { $this->assign('appid', $appId); $this->assign('bodyid', 'body-public'); + // Set logo link target + $logoUrl = $this->config->getSystemValueString('logo_url', ''); + $this->assign('logoUrl', $logoUrl); + /** @var IRegistry $subscription */ $subscription = \OCP\Server::get(IRegistry::class); $showSimpleSignup = $this->config->getSystemValueBool('simpleSignUpLink.shown', true); |