From e1740d86dfd1ee8c5bc02321984e6666bc71266f Mon Sep 17 00:00:00 2001 From: Patrick Canterino Date: Mon, 25 Nov 2024 17:24:07 +0100 Subject: [PATCH] Fixed footer ("designed by") --- lib/template/footer.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lib/template/footer.php b/lib/template/footer.php index 637ce42..64132c7 100644 --- a/lib/template/footer.php +++ b/lib/template/footer.php @@ -4,14 +4,18 @@ ' . t('JI_PROJECT') . '' . - '

' . t('DESIGNED') . ' ' . $cfg['contactperson'] . '

' . ' (AGPL-3.0)'; ?> | '; + echo ' ' . t('DESIGNED') . ' ' . $cfg['organisation']; + } + echo ' | '; - echo '' . t('TOS') . ''; + echo '' . t('TOS') . ''; } ?>

-- 2.34.1