Mercurial > hg-stable
changeset 6097:9b817c0a82f1
hgweb: Fix stray quote in logo img tag
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Thu, 14 Feb 2008 10:55:17 -0600 |
parents | d8477881ee0f |
children | abb1c451a88e |
files | templates/footer.tmpl tests/test-hgweb-commands.out tests/test-hgweb.out |
diffstat | 3 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/templates/footer.tmpl Thu Feb 14 10:28:27 2008 -0600 +++ b/templates/footer.tmpl Thu Feb 14 10:55:17 2008 -0600 @@ -1,7 +1,7 @@ #motd# <div class="logo"> <a href="http://www.selenic.com/mercurial/"> -<img src="#staticurl#hglogo.png" width=75 height=90" border=0 alt="mercurial"></a> +<img src="#staticurl#hglogo.png" width=75 height=90 border=0 alt="mercurial"></a> </div> </body>
--- a/tests/test-hgweb.out Thu Feb 14 10:28:27 2008 -0600 +++ b/tests/test-hgweb.out Thu Feb 14 10:55:17 2008 -0600 @@ -43,8 +43,8 @@ <div class="logo"> -powered by<br/> -<a href="http://www.selenic.com/mercurial/">mercurial</a> +<a href="http://www.selenic.com/mercurial/"> +<img src="/static/hglogo.png" width=75 height=90 border=0 alt="mercurial"></a> </div> </body>