diff options
author | Mark Wells <mark@freeside.biz> | 2014-08-15 16:08:24 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2014-08-15 16:08:24 -0700 |
commit | d87c9f804b0cb7b6798bf770f753fb83022f5e6a (patch) | |
tree | 08081d967033fbcdbdd834bb49e841f7325c4afd /httemplate/edit/process/part_export.cgi | |
parent | 383f177db523f12b88e7b3c4dd2c3ee51f750cff (diff) |
SNMP export: allow manually entering OIDs, #20945
Diffstat (limited to 'httemplate/edit/process/part_export.cgi')
-rw-r--r-- | httemplate/edit/process/part_export.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/edit/process/part_export.cgi b/httemplate/edit/process/part_export.cgi index e0c470675..7fe3d0369 100644 --- a/httemplate/edit/process/part_export.cgi +++ b/httemplate/edit/process/part_export.cgi @@ -41,7 +41,7 @@ foreach my $option (split(',', $cgi->param('multi_options'))) { foreach my $option (split(',', $cgi->param('multi_options'))) { my $value = ''; foreach my $row (sort keys %{$optionrows{_ALL_}}) { - $value .= ($optionrows{$option}{$row} || '') . "\n"; + $value .= ($optionrows{$option}{$row} // '') . "\n"; } chomp($value); $options{$option} = $value; |