diff options
-rw-r--r-- | apps/files_sharing/templates/public.php | 8 | ||||
-rw-r--r-- | core/templates/layout.guest.php | 3 |
2 files changed, 8 insertions, 3 deletions
diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php index bf2a38de73b..adf3c3e9cc8 100644 --- a/apps/files_sharing/templates/public.php +++ b/apps/files_sharing/templates/public.php @@ -46,5 +46,9 @@ <?php endif; ?> <?php endif; ?> </div> -<footer><p class="info"><a href="<?php p(OC_Defaults::getBaseUrl()); ?>"><?php p(OC_Defaults::getEntity()) ?></a> – -<?php p(OC_Defaults::getSlogan()); ?></p></footer> +<footer> + <p class="info"><a href="<?php p(OC_Defaults::getBaseUrl()); ?>"><?php p(OC_Defaults::getEntity()) ?></a> + <?php OC_Util::getEditionString() === '' ? print_unescaped(' – ') : print_unescaped('<br/>'); ?> + <?php p(OC_Defaults::getSlogan()); ?> + </p> +</footer> diff --git a/core/templates/layout.guest.php b/core/templates/layout.guest.php index 2f3bf8752cd..ba0147e6733 100644 --- a/core/templates/layout.guest.php +++ b/core/templates/layout.guest.php @@ -45,7 +45,8 @@ <p class="info"> <?php OC_Util::getEditionString() === '' ? '' : p('© 2013 '); ?> <a href="<?php p(OC_Defaults::getBaseUrl())?>"> - <?php p(OC_Defaults::getEntity()); ?></a> – + <?php p(OC_Defaults::getEntity()); ?></a> + <?php OC_Util::getEditionString() === '' ? print_unescaped(' – ') : print_unescaped('<br/>'); ?> <?php p(OC_Defaults::getSlogan()); ?></p></footer> </body> </html> |