summaryrefslogtreecommitdiff
path: root/httemplate/misc/process
diff options
context:
space:
mode:
authorivan <ivan>2003-11-10 13:54:21 +0000
committerivan <ivan>2003-11-10 13:54:21 +0000
commit066c1665efce43307446207a33f876b0baefe1d6 (patch)
tree4fdfc4ce547b99a2c384dcd77f914b04149bd5b9 /httemplate/misc/process
parent7d64a6acdc011b65b495e9ee4288c86be28d6897 (diff)
hmm forgot to check this in?
Diffstat (limited to 'httemplate/misc/process')
-rw-r--r--httemplate/misc/process/meta-import.cgi4
1 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/misc/process/meta-import.cgi b/httemplate/misc/process/meta-import.cgi
index 2939c8fb2..59d236f64 100644
--- a/httemplate/misc/process/meta-import.cgi
+++ b/httemplate/misc/process/meta-import.cgi
@@ -116,8 +116,8 @@ function SafeOnsubmit() {
#hashmaker widget
sub hashmaker {
my($name, $from, $to, $labelfrom, $labelto) = @_;
- $fromsize = scalar(@$from);
- $tosize = scalar(@$to);
+ my $fromsize = scalar(@$from);
+ my $tosize = scalar(@$to);
"<TABLE><TR><TH>$labelfrom</TH><TH>$labelto</TH></TR><TR><TD>".
qq!<SELECT NAME="${name}_from" SIZE=$fromsize>\n!.
join("\n", map { qq!<OPTION VALUE="$_">$_</OPTION>! } sort { $a cmp $b } @$from ).