Jonathan Nieder wrote: > Date: Fri, 3 Sep 2010 19:44:39 -0500 > > With v1.5.0-rc0~169 (gitweb: Fix Atom feed <logo>: it is $logo, > not $logo_url, 2006-12-04), the logo URI to be written to Atom > feeds was corrected but the case of no logo forgotten. > > Acked-by: Eric Wong <normalperson@xxxxxxxx> > Signed-off-by: Jonathan Nieder <jrnieder@xxxxxxxxx> Good catch. As an obvious bugfix: Acked-by: Jakub Narebski <jnareb@xxxxxxxxx> > --- > gitweb/gitweb.perl | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl > index 4779618..c65af1a 100755 > --- a/gitweb/gitweb.perl > +++ b/gitweb/gitweb.perl > @@ -7169,7 +7169,7 @@ XML > if (defined $favicon) { > print "<icon>" . esc_url($favicon) . "</icon>\n"; > } > - if (defined $logo_url) { > + if (defined $logo) { > # not twice as wide as tall: 72 x 27 pixels > print "<logo>" . esc_url($logo) . "</logo>\n"; > } > -- > 1.7.4.rc0 > > -- Jakub Narebski Poland -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html