make footer aware of ownCloud editions

This commit is contained in:
Björn Schießle 2013-06-12 14:49:30 +02:00
parent 7c108edc36
commit 918906f042
1 changed files with 7 additions and 2 deletions

View File

@ -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>