Skip to content

Commit

Permalink
Fixed value used for owner lookup in AgentTicketProcess.
Browse files Browse the repository at this point in the history
Co-authored-by: Falko Sperker <[email protected]>
  • Loading branch information
falkos and Falko Sperker authored Jun 7, 2024
1 parent 80f5837 commit 8e5bedc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Kernel/Modules/AgentTicketProcess.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3572,12 +3572,12 @@ sub _RenderOwner {

# set server errors
my $ServerError = '';
if ( IsHashRefWithData( $Param{Error} ) && $Param{Error}->{'OwnerID'} ) {
if ( IsHashRefWithData( $Param{Error} ) && $Param{Error}->{'Owner'} ) {
$ServerError = 'ServerError';
}

if ( $Self->{LinkTicketData} ) {
$SelectedValue = $Self->{LinkTicketData}->{OwnerID};
$SelectedValue = $Self->{LinkTicketData}->{Owner};
}

# look up $SelectedID
Expand Down

0 comments on commit 8e5bedc

Please sign in to comment.