diff options
author | Luke Dashjr <luke-jr+git@utopios.org> | 2016-10-05 05:50:12 +0000 |
---|---|---|
committer | Luke Dashjr <luke-jr+git@utopios.org> | 2016-10-05 05:50:12 +0000 |
commit | 6d086e11d09acc29fee5c3204a488496d395370f (patch) | |
tree | ae7fbe223236f652afb5ecfd9ce584bf6bc5cd99 | |
parent | 9bf1c758824586dbe96dfe8488f302373063fe99 (diff) |
Bugfix: scripts/buildtable: Tolerate Discussions-To, Replaces, Superseded-By, and Resolution headers
-rwxr-xr-x | scripts/buildtable.pl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/buildtable.pl b/scripts/buildtable.pl index 568b8eb..f0e43d2 100755 --- a/scripts/buildtable.pl +++ b/scripts/buildtable.pl @@ -24,7 +24,11 @@ my %EmailField = ( Editor => undef, ); my %MiscField = ( + 'Discussions-To' => undef, 'Post-History' => undef, + 'Replaces' => undef, + 'Superseded-By' => undef, + 'Resolution' => undef, ); my %ValidLayer = ( |