From d6ee16cc13ce74c976f3e86694bf9c716f32b5c4 Mon Sep 17 00:00:00 2001 From: Dianne Skoll Date: Tue, 13 Jan 2026 17:02:43 -0500 Subject: [PATCH] Avoid "use of uninitialized variable" --- rem2html/rem2html.in | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/rem2html/rem2html.in b/rem2html/rem2html.in index 5fc3a108..369df570 100644 --- a/rem2html/rem2html.in +++ b/rem2html/rem2html.in @@ -767,9 +767,11 @@ sub output_calendar # Start the table my $class; if ($Options{nostyle}) { - print '' . "\n"; - print ''; + print '
' . - $Month . ' ' . $Year . '
'; + if ($type eq 'monthly') { + print ""; + } + print "\n"; $class = ' width="14%"'; } else { if ($type eq 'monthly') {
$Month $Year