]> git.p6c8.net - jirafeau.git/commitdiff
Merge branch 'fix-footer' into 'master'
authorJérôme <mojo@couak.net>
Tue, 21 Apr 2015 13:34:12 +0000 (13:34 +0000)
committerJérôme <mojo@couak.net>
Tue, 21 Apr 2015 13:34:12 +0000 (13:34 +0000)
Fix the footer

- Remove invisible and unused <a>
- i10n of the strings
- rtrim() the trailing slashes in the webroot URL to avoid double slashes in the link to tos.php
- reformat and indent source to make it more readable
- link to the AGPL license is now HTTPS

See merge request !4

lib/template/footer.php

index 50f7b83f5d35271dc20c9c4451a2131766252fdd..d9474219931af96f278a83f52e1c2533c1bae10f 100644 (file)
@@ -1,6 +1,11 @@
 
 <div id="copyright">
-<p><a href="https://gitlab.com/mojo42/Jirafeau/wikis/home"></a><br /><a href="http://www.gnu.org/licenses/agpl.html">agplv3</a> | <a href="https://gitlab.com/mojo42/Jirafeau/wikis/home">Jirafeau Project</a> | <a href="<?php echo $cfg['web_root'] . '/tos.php'; ?>">Terms of Service</a></p>
+    <p>
+        <br />
+        <a href="https://www.gnu.org/licenses/agpl.html">agplv3</a> |
+        <a href="https://gitlab.com/mojo42/Jirafeau/wikis/home"><?php echo t('Jirafeau Project') ?></a> |
+        <a href="<?php echo rtrim($cfg['web_root'], '/') . '/tos.php'; ?>"><?php echo t('Term Of Service') ?></a>
+    </p>
 </div>
 </div>
 <div id="jyraphe">

patrick-canterino.de