[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#912186: debbugs: correct favicon location in <link/> HTML header



Source: debbugs
Version: 2.6.0
Severity: normal
Tags: patch

Hi,

Currently we render this to pages:

  <link rel="icon" href="//favicon.png">

Unfortunately, this actually represents a protocol-relative URI
instead of an path-absolute link, causing lookups to a location
such as "https://favicon.png/"; or "http://favicon.png/";.

Patch attached.


Regards,

-- 
      ,''`.
     : :'  :     Chris Lamb
     `. `'`      lamby@debian.org / chris-lamb.co.uk
       `-
diff --git a/templates/en_US/html/pre_title.tmpl b/templates/en_US/html/pre_title.tmpl
index cff5bbc..6c165f8 100644
--- a/templates/en_US/html/pre_title.tmpl
+++ b/templates/en_US/html/pre_title.tmpl
@@ -1,4 +1,4 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
 <html><head>
-<link rel="icon" href="//favicon.png">
+<link rel="icon" href="/favicon.png">
 <title>
\ No newline at end of file

Reply to: