From e27c3a6090523549509ced1cc3d5f27d9be0e7aa Mon Sep 17 00:00:00 2001 From: Baptiste Wojtkowski Date: Wed, 14 Aug 2024 10:55:16 +0200 Subject: [PATCH] Bug 37642: Generated letter should use https in header _wrap_html returns a header referring to http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd and http://www.w3.org/1999/xhtml. These should be https links. Signed-off-by: David Nind Signed-off-by: Paul Derscheid Signed-off-by: Katrin Fischer --- C4/Letters.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/C4/Letters.pm b/C4/Letters.pm index 3f2fc95a4b..7bdbfc9bf2 100644 --- a/C4/Letters.pm +++ b/C4/Letters.pm @@ -1579,8 +1579,8 @@ sub _wrap_html { $css = qq{} if $css; return < - + "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + $title -- 2.39.5