diff options
| author | Mark Wells <mark@freeside.biz> | 2014-08-15 16:08:11 -0700 |
|---|---|---|
| committer | Mark Wells <mark@freeside.biz> | 2014-08-15 16:08:11 -0700 |
| commit | 15deaf0aa18910232f99a38398995b3abc412411 (patch) | |
| tree | 1016d0205faa1c069b9790e4b304e0b9fb3ded12 /httemplate/edit/process/part_export.cgi | |
| parent | b77e2c257c0ac8c6195a0525c599eafd72997192 (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; |
