mirror of
https://github.com/nextcloud/server.git
synced 2026-04-22 06:37:56 -04:00
Merge pull request #57348 from nextcloud/fix/adjust-public-page-footer-logic
fix: adjust public page footer logic
This commit is contained in:
commit
eb91d8671d
1 changed files with 1 additions and 1 deletions
|
|
@ -93,7 +93,7 @@ p($theme->getTitle());
|
|||
<?php print_unescaped($_['content']); ?>
|
||||
</div>
|
||||
|
||||
<?php if ((isset($template) && $template->getFooterVisible()) || $theme->getLongFooter() !== '' || $_['showSimpleSignUpLink']) { ?>
|
||||
<?php if ((!isset($template) || $template->getFooterVisible() !== false) && ($theme->getLongFooter() !== '' || $_['showSimpleSignUpLink'])) { ?>
|
||||
<footer class="guest-box">
|
||||
<?php if ($theme->getLongFooter() !== '') { ?>
|
||||
<p class="info">
|
||||
|
|
|
|||
Loading…
Reference in a new issue