public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: Adolf Belka <adolf.belka@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH 2/2] dns.cgi: Remove the decode and encode lines as now integrated in header.pl
Date: Mon, 17 Jun 2024 13:12:36 +0200	[thread overview]
Message-ID: <20240617111236.2926-2-adolf.belka@ipfire.org> (raw)
In-Reply-To: <20240617111236.2926-1-adolf.belka@ipfire.org>

[-- Attachment #1: Type: text/plain, Size: 1498 bytes --]

- decode and encode lines have now been integrated into the cleanhtml subroutine in
   header.pl so that all uses of cleanhtml will be able to handle diacritical characters

Tested-by: Adolf Belka <adolf.belka(a)ipfire.org>
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
 html/cgi-bin/dns.cgi | 11 -----------
 1 file changed, 11 deletions(-)

diff --git a/html/cgi-bin/dns.cgi b/html/cgi-bin/dns.cgi
index 1181523d4..0d3b14797 100644
--- a/html/cgi-bin/dns.cgi
+++ b/html/cgi-bin/dns.cgi
@@ -21,7 +21,6 @@
 
 use strict;
 use IO::Socket;
-use Encode;
 
 # enable only the following on debugging purpose
 #use warnings;
@@ -143,18 +142,8 @@ if (($cgiparams{'SERVERS'} eq $Lang::tr{'save'}) || ($cgiparams{'SERVERS'} eq $L
 	# Go further if there was no error.
 	if ( ! $errormessage) {
 		# Check if a remark has been entered.
-
-		# decode the UTF-8 text so that characters with diacritical marks such as
-		# umlauts are treated correctly by the following cleanhtml command
-		$cgiparams{'REMARK'} = decode("UTF-8", $cgiparams{'REMARK'});
-
-		# run the REMARK text through cleanhtml to ensure all unsafe html characters
-		# are correctly encoded to their html entities
 		$cgiparams{'REMARK'} = &Header::cleanhtml($cgiparams{'REMARK'});
 
-		# encode the text back to UTF-8 after running the cleanhtml command
-		$cgiparams{'REMARK'} = encode("UTF-8", $cgiparams{'REMARK'});
-
 		my %dns_servers = ();
 		my $id;
 		my $status;
-- 
2.45.2


  reply	other threads:[~2024-06-17 11:12 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-17 11:12 [PATCH 1/2] header.pl: Add utf-8 handling into cleanhtml command Adolf Belka
2024-06-17 11:12 ` Adolf Belka [this message]
2024-07-17  8:58 ` Adolf Belka

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240617111236.2926-2-adolf.belka@ipfire.org \
    --to=adolf.belka@ipfire.org \
    --cc=development@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox