diff options
author | ivan <ivan> | 2003-04-22 17:55:09 +0000 |
---|---|---|
committer | ivan <ivan> | 2003-04-22 17:55:09 +0000 |
commit | f1324d535989205477e37d701c910b12c045687b (patch) | |
tree | 8283b89cb16498626b02b265753e372aad67e7d7 /httemplate/edit | |
parent | 60527016538d1794227983d99ce3b77c8fcd7426 (diff) |
mason is more strict about variables - patch from Richard Siddall, thanks
Diffstat (limited to 'httemplate/edit')
-rw-r--r-- | httemplate/edit/part_export.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/edit/part_export.cgi b/httemplate/edit/part_export.cgi index 839a114fb..4defbc86f 100644 --- a/httemplate/edit/part_export.cgi +++ b/httemplate/edit/part_export.cgi @@ -60,7 +60,7 @@ my $widget = new HTML::Widgets::SelectLayers( foreach my $select_option ( @{$optinfo->{options}} ) { #if ( ref($select_option) ) { #} else { - $selected = $select_option eq $value ? ' SELECTED' : ''; + my $selected = $select_option eq $value ? ' SELECTED' : ''; $html .= qq!<OPTION VALUE="$select_option"$selected>!. qq!$select_option</OPTION>!; #} |