diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-06-17 20:35:08 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-06-17 20:35:08 +0200 |
commit | aaefa157fddd115e2d8d78e2894febac14c59f20 (patch) | |
tree | 3a2605bf3a69bf0e19d780578debec8e233515e1 /core/templates/layout.guest.php | |
parent | 0089437c25584ff8e533c4995c81cc499c460a4e (diff) | |
download | nextcloud-server-aaefa157fddd115e2d8d78e2894febac14c59f20.tar.gz nextcloud-server-aaefa157fddd115e2d8d78e2894febac14c59f20.zip |
hide the logo claim in case the theme is not loaded
Diffstat (limited to 'core/templates/layout.guest.php')
-rw-r--r-- | core/templates/layout.guest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/layout.guest.php b/core/templates/layout.guest.php index ba0147e6733..4173212dfa3 100644 --- a/core/templates/layout.guest.php +++ b/core/templates/layout.guest.php @@ -36,7 +36,7 @@ <header><div id="header"> <img src="<?php print_unescaped(image_path('', 'logo.svg')); ?>" class="svg" alt="ownCloud" /> <?php if (OC_Util::getEditionString() !== ''): ?> - <div id="logo-claim">Enterprise Edition</div> + <div id="logo-claim" style="display:none;">Enterprise Edition</div> <?php endif; ?> </div></header> <?php print_unescaped($_['content']); ?> |