From c65f422de19a84f8a1fde65fab6ed2822482db27 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Fri, 4 Oct 2024 09:18:40 +0100 Subject: [PATCH] Bug 33260: (follow-up) Correct call to 'style' --- tools/print_notice.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/print_notice.pl b/tools/print_notice.pl index a4b43647fe5..90f4617cff8 100755 --- a/tools/print_notice.pl +++ b/tools/print_notice.pl @@ -43,7 +43,7 @@ foreach my $message_id (@message_ids) { push @slips, { content => $message->content, is_html => $message->is_html, - style => $template ? $template->{style} : undef, + style => $template ? $template->style : undef, id => $message_id, }; -- 2.47.1