summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorBjörn Schießle <schiessle@owncloud.com>2013-06-12 14:49:30 +0200
committerBjörn Schießle <schiessle@owncloud.com>2013-06-12 14:49:30 +0200
commit918906f04287f12e10c812f719d205a0f2cd6a7b (patch)
tree19d30791d3ec373bc9345edf2579994b40c26722 /core
parent7c108edc3603fd18300e5eba2af798dd1cdc41de (diff)
downloadnextcloud-server-918906f04287f12e10c812f719d205a0f2cd6a7b.tar.gz
nextcloud-server-918906f04287f12e10c812f719d205a0f2cd6a7b.zip
make footer aware of ownCloud editions
Diffstat (limited to 'core')
-rw-r--r--core/templates/layout.guest.php9
1 files changed, 7 insertions, 2 deletions
diff --git a/core/templates/layout.guest.php b/core/templates/layout.guest.php
index 70c29580a9f..3ccc9e32182 100644
--- a/core/templates/layout.guest.php
+++ b/core/templates/layout.guest.php
@@ -38,7 +38,12 @@
</div></header>
<?php print_unescaped($_['content']); ?>
</div>
- <footer><p class="info"><a href="http://owncloud.org/">ownCloud</a> &ndash;
- <?php p($l->t( 'web services under your control' )); ?></p></footer>
+ <footer>
+ <p class="info">
+ <?php OC_Util::getEditionString() === '' ? '' : p('© 2013 '); ?>
+ <a href="
+ <?php OC_Util::getEditionString() === '' ? p('http://owncloud.org') : p('https://owncloud.com'); ?>">
+ <?php OC_Util::getEditionString() === '' ? p('ownCloud') : p('ownCloud Inc.'); ?></a> &ndash;
+ <?php OC_Util::getEditionString() === '' ? p($l->t( 'web services under your control' )) : p("Your Cloud, Your Data, Your Way!"); ?></p></footer>
</body>
</html>