From a2eb46d8b4a60c15657636be222bc50d9b7664b4 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 100644 --- 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.48.1