diff options
author | Björn Schießle <schiessle@owncloud.com> | 2013-06-12 17:20:09 +0200 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2013-06-12 17:20:09 +0200 |
commit | 2141c41d0d76e0363324018d52272ebb82fa7b36 (patch) | |
tree | b5eb897fe6b69e4d03bd3076946407cc3b9b83a8 | |
parent | 2e1836c1da84395df132cc13e2d28095f855e960 (diff) | |
download | nextcloud-server-2141c41d0d76e0363324018d52272ebb82fa7b36.tar.gz nextcloud-server-2141c41d0d76e0363324018d52272ebb82fa7b36.zip |
add logo-claim
-rw-r--r-- | core/templates/layout.guest.php | 3 | ||||
-rw-r--r-- | core/templates/layout.user.php | 4 |
2 files changed, 6 insertions, 1 deletions
diff --git a/core/templates/layout.guest.php b/core/templates/layout.guest.php index 03da7559b8c..2f3bf8752cd 100644 --- a/core/templates/layout.guest.php +++ b/core/templates/layout.guest.php @@ -35,6 +35,9 @@ <div id="login"> <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> + <?php endif; ?> </div></header> <?php print_unescaped($_['content']); ?> </div> diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index e2be2f951eb..44ae4c6ca35 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -43,7 +43,9 @@ <header><div id="header"> <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> + <?php endif; ?> <ul id="settings" class="svg"> <span id="expand" tabindex="0" role="link"> <span id="expandDisplayName"><?php p(trim($_['user_displayname']) != '' ? $_['user_displayname'] : $_['user_uid']) ?></span> |