diff options
Diffstat (limited to 'themes/example')
-rw-r--r-- | themes/example/defaults.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/themes/example/defaults.php b/themes/example/defaults.php index 37bce6c3ee6..6bf93e62681 100644 --- a/themes/example/defaults.php +++ b/themes/example/defaults.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors * SPDX-FileCopyrightText: 2016 ownCloud, Inc. @@ -87,8 +88,8 @@ class OC_Theme { * @return string long footer */ public function getLongFooter(): string { - $footer = '© ' . date('Y') . ' <a href="' . $this->getBaseUrl() . '" target="_blank">' . $this->getEntity() . '</a>' . - '<br/>' . $this->getSlogan(); + $footer = '© ' . date('Y') . ' <a href="' . $this->getBaseUrl() . '" target="_blank">' . $this->getEntity() . '</a>' + . '<br/>' . $this->getSlogan(); return $footer; } |