]> source.dussan.org Git - nextcloud-server.git/commitdiff
make footer aware of ownCloud editions
authorBjörn Schießle <schiessle@owncloud.com>
Wed, 12 Jun 2013 12:49:30 +0000 (14:49 +0200)
committerBjörn Schießle <schiessle@owncloud.com>
Wed, 12 Jun 2013 12:49:30 +0000 (14:49 +0200)
core/templates/layout.guest.php

index 70c29580a9f238b44733da74ba4d7c2091e6b1ff..3ccc9e3218290e8f2e94daff848472692a2d5b6f 100644 (file)
                        </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>