diff options
author | Frank Karlitschek <frank@owncloud.org> | 2013-06-18 14:14:34 -0700 |
---|---|---|
committer | Frank Karlitschek <frank@owncloud.org> | 2013-06-18 14:14:34 -0700 |
commit | 11194c69db652162baf214995aad5908974aa65d (patch) | |
tree | 29575b46a6fd4c4d644acdf695fe6ad936809e52 | |
parent | 7ee57dd42c40e8dbd1beab09d29e23af4ee77508 (diff) | |
parent | aaefa157fddd115e2d8d78e2894febac14c59f20 (diff) | |
download | nextcloud-server-11194c69db652162baf214995aad5908974aa65d.tar.gz nextcloud-server-11194c69db652162baf214995aad5908974aa65d.zip |
Merge pull request #3765 from owncloud/hide-logo-claim
hide the logo claim in case the theme is not loaded
-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"> |