summaryrefslogtreecommitdiffstats
path: root/globals.pl
diff options
context:
space:
mode:
Diffstat (limited to 'globals.pl')
-rw-r--r--globals.pl2
1 files changed, 0 insertions, 2 deletions
diff --git a/globals.pl b/globals.pl
index 63998f859..136fb8b0e 100644
--- a/globals.pl
+++ b/globals.pl
@@ -340,13 +340,11 @@ sub GenerateVersionTable {
SendSQL("SELECT id, name FROM keyworddefs ORDER BY name");
while (MoreSQLData()) {
my ($id, $name) = FetchSQLData();
- $::keywordsbyid{$id} = $name;
$::keywordsbyname{$name} = $id;
push(@::legal_keywords, $name);
}
print FID GenerateCode('@::legal_keywords');
print FID GenerateCode('%::keywordsbyname');
- print FID GenerateCode('%::keywordsbyid');
print FID "1;\n";
close FID;