mirror of
https://github.com/nextcloud/server.git
synced 2026-02-19 02:38:40 -05:00
fix: adjust public page footer logic
Signed-off-by: SebastianKrupinski <krupinskis05@gmail.com>
This commit is contained in:
parent
f42493bf1e
commit
6b3d3fd2d3
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