mirror of
https://github.com/nextcloud/server.git
synced 2026-02-03 20:41:22 -05:00
fix: adjust public page footer logic
Signed-off-by: SebastianKrupinski <krupinskis05@gmail.com>
This commit is contained in:
parent
b3347f1821
commit
bf51f2a4d3
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