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 | |
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')
-rw-r--r-- | core/templates/layout.guest.php | 2 | ||||
-rw-r--r-- | core/templates/layout.user.php | 2 |
2 files changed, 2 insertions, 2 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']); ?> diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 44ae4c6ca35..8c82a5c028e 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -44,7 +44,7 @@ <a href="<?php print_unescaped(link_to('', 'index.php')); ?>" title="" id="owncloud"><img class="svg" src="<?php print_unescaped(image_path('', 'logo-wide.svg')); ?>" alt="ownCloud" /></a> <?php if (OC_Util::getEditionString() !== ''): ?> - <div id="logo-claim">Enterprise Edition</div> + <div id="logo-claim" style="display:none;">Enterprise Edition</div> <?php endif; ?> <ul id="settings" class="svg"> <span id="expand" tabindex="0" role="link"> |