aboutsummaryrefslogtreecommitdiffstats
path: root/apps/theming
diff options
context:
space:
mode:
authorFerdinand Thiessen <opensource@fthiessen.de>2024-07-26 15:01:27 +0200
committerFerdinand Thiessen <opensource@fthiessen.de>2024-07-31 11:01:04 +0200
commit26fc01dfc6f54c4f308dee50d33268c20fcb1c69 (patch)
treeb9589eda867e57e0afb12934867a68a08b21b4ff /apps/theming
parent778c11837483767f0791619d18f1efae6b17553d (diff)
downloadnextcloud-server-26fc01dfc6f54c4f308dee50d33268c20fcb1c69.tar.gz
nextcloud-server-26fc01dfc6f54c4f308dee50d33268c20fcb1c69.zip
fix(styles): Make sure footer with legal links is shown correctly
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'apps/theming')
-rw-r--r--apps/theming/lib/ThemingDefaults.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/theming/lib/ThemingDefaults.php b/apps/theming/lib/ThemingDefaults.php
index 29a4da1959d..bd22f9cb0fd 100644
--- a/apps/theming/lib/ThemingDefaults.php
+++ b/apps/theming/lib/ThemingDefaults.php
@@ -217,7 +217,7 @@ class ThemingDefaults extends \OC_Defaults {
}
}
if ($legalLinks !== '') {
- $footer .= '<br/>' . $legalLinks;
+ $footer .= '<br/><span class="footer__legal-links">' . $legalLinks . '</span>';
}
return $footer;