@@ -, +, @@ --- serials/lateissues-export.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/serials/lateissues-export.pl +++ a/serials/lateissues-export.pl @@ -57,7 +57,7 @@ while ( $content =~ / $header =~ s/^\s+|\s+$//g; # Trim whitespaces push @headers, $header; - $field =~ s/[^\.]*\.{1}//; # Remove the table name if exists. + $field =~ s/[^.]+\.//; # Remove the table name if exists. $field =~ s/^\s+|\s+$//g; # Trim whitespaces push @fields, $field; } --