From: Jakub Narebski Date: Mon, 4 Dec 2006 13:09:43 +0000 (+0100) Subject: gitweb: Fix Atom feed : it is $logo, not $logo_url X-Git-Tag: v1.5.0-rc0~169 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/e1147267afc0afa269884767c4045847d9a2be8a?ds=inline;hp=--cc gitweb: Fix Atom feed : it is $logo, not $logo_url Fix contents of Atom feed element; it should be URL of $logo, not URL pointed by logo link. Signed-off-by: Jakub Narebski Signed-off-by: Junio C Hamano --- e1147267afc0afa269884767c4045847d9a2be8a diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index 093bd72058..ffe8ce13ff 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -4282,7 +4282,7 @@ sub git_feed { } if (defined $logo_url) { # not twice as wide as tall: 72 x 27 pixels - print "" . esc_url($logo_url) . "\n"; + print "" . esc_url($logo) . "\n"; } if (! %latest_date) { # dummy date to keep the feed valid until commits trickle in: