Skip to content

Commit

Permalink
Print the date of a newspaper (FMP)
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelhorne committed Oct 28, 2023
1 parent 0f94661 commit 180ae70
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion gedcom
Original file line number Diff line number Diff line change
Expand Up @@ -5631,6 +5631,9 @@ sub print_person
}
my $url = $event->source()->tag_record('REF')->value();
$phrase->append("appeared in a newspaper ($url)");
if(my $date = $event->date()) {
$phrase->append(" on $date");
}

# die $i->page();
} elsif($type eq 'Funeral') {
Expand Down Expand Up @@ -5947,7 +5950,9 @@ sub print_person
}
my $url = $event->source()->tag_record('REF')->value();
$phrase->append("appeared in a newspaper ($url)");

if(my $date = $event->date()) {
$phrase->append(" on $date");
}
# die $i->page();
# } elsif(($type !~ /^Census U[KS] \d{4}$/) &&
} elsif($type eq 'Funeral') {
Expand Down

0 comments on commit 180ae70

Please sign in to comment.