diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-07-04 19:19:55 (EDT) |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-07-04 19:20:07 (EDT) |
commit | 47c2a5b255cf6f91cebc1246139cd44c6462b4a0 (patch) | |
tree | 7a8615ed253b36e31f2b652f8c48bdff8a04d516 /site | |
parent | 38226a5b405bc07afc54e8fd01e858a90580a8c0 (diff) | |
download | libreboot.org-47c2a5b255cf6f91cebc1246139cd44c6462b4a0.zip libreboot.org-47c2a5b255cf6f91cebc1246139cd44c6462b4a0.tar.gz libreboot.org-47c2a5b255cf6f91cebc1246139cd44c6462b4a0.tar.bz2 |
download page: fix formatting
Due to a bug in the way the html minification is done, the link
was appearing without a space before it. This workaround fixes
that.
Diffstat (limited to 'site')
-rw-r--r-- | site/download/index.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/site/download/index.php b/site/download/index.php index b7c70fc..4706124 100644 --- a/site/download/index.php +++ b/site/download/index.php @@ -40,8 +40,7 @@ <b> <?php echo gettext("The latest release is:"); ?> <?php echo $lbRelease[0][0][0]; ?>. <?php echo gettext("Release date:"); ?> <?php echo $lbRelease[0][0][1]; ?>. - </b> - <a href="../"><?php echo gettext("Back to home page"); ?></a> + </b> <a href="../"><?php echo gettext("Back to home page"); ?></a> </p> <h2 id="http">HTTP mirrors</h2> @@ -67,4 +66,4 @@ <?php $strHtml = ob_get_clean(); echo miniHtml($strHtml); -?>
\ No newline at end of file +?> |