From: Michael Tremer Date: Wed, 20 May 2026 15:00:33 +0000 (+0100) Subject: header.pl: Escape titles for openbox() X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=f607f40952821ee52bdf28d34ba91bf95bdbc01f;p=ipfire-2.x.git header.pl: Escape titles for openbox() Reported-by: valent1 Signed-off-by: Michael Tremer --- diff --git a/config/cfgroot/header.pl b/config/cfgroot/header.pl index 6e65f4137..a1a39bb4e 100644 --- a/config/cfgroot/header.pl +++ b/config/cfgroot/header.pl @@ -336,7 +336,8 @@ sub openbox { my $width = shift; my $align = shift; - my $title = shift; + # Escale the title + my $title = &Header::escape(shift); my @classes = ("section", "is-box", @_);