Explorar el Código

make footer aware of ownCloud editions

tags/v6.0.0alpha2
Björn Schießle hace 11 años
padre
commit
918906f042
Se han modificado 1 ficheros con 7 adiciones y 2 borrados
  1. 7
    2
      core/templates/layout.guest.php

+ 7
- 2
core/templates/layout.guest.php Ver fichero

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

Cargando…
Cancelar
Guardar