From 4025d0e3cc35c91e4d3c76ebce8d351aa00a6d5d Mon Sep 17 00:00:00 2001 From: Franziska Bath Date: Mon, 3 Mar 2025 12:25:11 +0100 Subject: [PATCH] chore(defaults): remove slogan from share footer Signed-off-by: Franziska Bath --- defaults.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/defaults.php b/defaults.php index 60f46b3..0b768dd 100644 --- a/defaults.php +++ b/defaults.php @@ -124,8 +124,7 @@ public function getShortFooter(): string { * @return string long footer */ public function getLongFooter(): string { - $footer = '© ' . date('Y') . ' ' . $this->getEntity() . '' . - '
' . $this->getSlogan(); + $footer = '© ' . date('Y') . ' ' . $this->getEntity() . ''; return $footer; }