diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-07-26 15:01:27 +0200 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-07-26 15:12:33 +0200 |
commit | 39e163a19236713463aa56028e71a04ef1f13052 (patch) | |
tree | e27dd1256055f188db6333c23ef00eefc86daa9b /apps/theming | |
parent | 87dc0614d703536843b878808a2721899df798b4 (diff) | |
download | nextcloud-server-39e163a19236713463aa56028e71a04ef1f13052.tar.gz nextcloud-server-39e163a19236713463aa56028e71a04ef1f13052.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.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/theming/lib/ThemingDefaults.php b/apps/theming/lib/ThemingDefaults.php index b34173d2228..f43e96a8830 100644 --- a/apps/theming/lib/ThemingDefaults.php +++ b/apps/theming/lib/ThemingDefaults.php @@ -158,7 +158,7 @@ class ThemingDefaults extends \OC_Defaults { } } if ($legalLinks !== '') { - $footer .= '<br/>' . $legalLinks; + $footer .= '<br/><span class="footer__legal-links">' . $legalLinks . '</span>'; } return $footer; |