]> Lady’s Gitweb - Gitweb/commitdiff
gitweb: Fix Atom feed <logo>: it is $logo, not $logo_url
authorJakub Narebski <redacted>
Mon, 4 Dec 2006 13:09:43 +0000 (14:09 +0100)
committerLady <redacted>
Mon, 6 Apr 2026 04:07:11 +0000 (00:07 -0400)
Fix contents of Atom feed <logo> element; it should be URL
of $logo, not URL pointed by logo link.

Signed-off-by: Jakub Narebski <redacted>
Signed-off-by: Junio C Hamano <redacted>
gitweb.perl

index 9df4880ff5cad168b3f440b09e65574a964a681d296647aafb5ea435ad0b82bf..9b620f9cdd47194f5d2d1c9cb3b09f175a55c4ed07f37a616a267741d660c8e5 100755 (executable)
@@ -4283,7 +4283,7 @@ XML
                }
                if (defined $logo_url) {
                        # not twice as wide as tall: 72 x 27 pixels
-                       print "<logo>" . esc_url($logo_url) . "</logo>\n";
+                       print "<logo>" . esc_url($logo) . "</logo>\n";
                }
                if (! %latest_date) {
                        # dummy date to keep the feed valid until commits trickle in:
This page took 0.323427 seconds and 4 git commands to generate.