Skip to content

Commit

Permalink
Issue #3918: Fix rendering of ArticleDynamicFieldUpdate history entries.
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanhaerter authored and svenoe committed Nov 7, 2024
1 parent 155deb5 commit 07b14f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Kernel/Modules/AgentTicketHistory.pm
Original file line number Diff line number Diff line change
Expand Up @@ -154,10 +154,10 @@ sub Run {
# values stored previously in older format might not be compatible with new human readable form.
# Please see bug#11520 for more information.
#
# HistoryType: TicketDynamicFieldUpdate
# HistoryType: ArticleDynamicFieldUpdate & TicketDynamicFieldUpdate
# - Old: %%FieldName%%$FieldName%%Value%%$HistoryValue%%OldValue%%$HistoryOldValue
# - New: %%$FieldName%%$HistoryOldValue%%$HistoryValue
if ( $Data->{HistoryType} eq 'TicketDynamicFieldUpdate' ) {
if ( $Data->{HistoryType} eq 'ArticleDynamicFieldUpdate' || $Data->{HistoryType} eq 'TicketDynamicFieldUpdate' ) {
@Values = ( $Values[1], $Values[5] // '', $Values[3] // '' );
}

Expand Down

0 comments on commit 07b14f0

Please sign in to comment.