Skip to content

Commit

Permalink
Issue #2678: Use correct loop variable to check and set df values.
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanhaerter authored and svenoe committed Nov 16, 2023
1 parent 47d9b05 commit a5b6502
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Kernel/Modules/CustomerTicketMessage.pm
Original file line number Diff line number Diff line change
Expand Up @@ -176,9 +176,9 @@ sub Run {
DYNAMICFIELD:
for my $DynamicField ( sort keys %DynamicFieldValues ) {
next DYNAMICFIELD if !$DynamicField;
next DYNAMICFIELD if !$DynamicFieldValues{ $Self->{DynamicField} };
next DYNAMICFIELD if !$DynamicFieldValues{$DynamicField};

$DynamicFieldACLParameters{ 'DynamicField_' . $DynamicField } = $DynamicFieldValues{ $Self->{DynamicField} };
$DynamicFieldACLParameters{ 'DynamicField_' . $DynamicField } = $DynamicFieldValues{$DynamicField};
}
$GetParam{DynamicField} = \%DynamicFieldACLParameters;

Expand Down

0 comments on commit a5b6502

Please sign in to comment.