Skip to content
Snippets Groups Projects
Commit 11194c69 authored by Frank Karlitschek's avatar Frank Karlitschek
Browse files

Merge pull request #3765 from owncloud/hide-logo-claim

hide the logo claim in case the theme is not loaded
parents 7ee57dd4 aaefa157
No related branches found
No related tags found
No related merge requests found
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
<header><div id="header"> <header><div id="header">
<img src="<?php print_unescaped(image_path('', 'logo.svg')); ?>" class="svg" alt="ownCloud" /> <img src="<?php print_unescaped(image_path('', 'logo.svg')); ?>" class="svg" alt="ownCloud" />
<?php if (OC_Util::getEditionString() !== ''): ?> <?php if (OC_Util::getEditionString() !== ''): ?>
<div id="logo-claim">Enterprise Edition</div> <div id="logo-claim" style="display:none;">Enterprise Edition</div>
<?php endif; ?> <?php endif; ?>
</div></header> </div></header>
<?php print_unescaped($_['content']); ?> <?php print_unescaped($_['content']); ?>
......
...@@ -44,7 +44,7 @@ ...@@ -44,7 +44,7 @@
<a href="<?php print_unescaped(link_to('', 'index.php')); ?>" title="" id="owncloud"><img class="svg" <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> src="<?php print_unescaped(image_path('', 'logo-wide.svg')); ?>" alt="ownCloud" /></a>
<?php if (OC_Util::getEditionString() !== ''): ?> <?php if (OC_Util::getEditionString() !== ''): ?>
<div id="logo-claim">Enterprise Edition</div> <div id="logo-claim" style="display:none;">Enterprise Edition</div>
<?php endif; ?> <?php endif; ?>
<ul id="settings" class="svg"> <ul id="settings" class="svg">
<span id="expand" tabindex="0" role="link"> <span id="expand" tabindex="0" role="link">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment