From ef375ac0e20128c15faeab40cebc76c0530025d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Denny=20Korsuk=C3=A9witz?= Date: Tue, 21 Jan 2025 11:14:46 +0000 Subject: [PATCH] Fixed Bug - Problem when handling errors in the owner field in the activity dialog [#627](https://github.com/znuny/Znuny/issues/627). --- CHANGES.md | 1 + Kernel/Modules/AgentTicketProcess.pm | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 605ee519ebd..eb68b1f94f8 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,4 +1,5 @@ # 7.1.4 2024-??-?? + - 2025-01-21 Fixed Bug - Problem when handling errors in the owner field in the activity dialog. Thanks to Daylton Rodrigues (@dayltonr) for reporting. [#627](https://github.com/znuny/Znuny/issues/627). - 2025-01-16 Increased size of columns profile_key and profile_value of database table search_profile. - 2025-01-15 Sector Nord AG: Fixed module check for calendar plugin. Thanks to Sector Nord AG (@jsinagowitz). [PR#623](https://github.com/znuny/Znuny/pull/623) - 2024-12-23 Improved ACL checks in ticket overview modules. diff --git a/Kernel/Modules/AgentTicketProcess.pm b/Kernel/Modules/AgentTicketProcess.pm index 3d697f590cb..d1054d542d0 100644 --- a/Kernel/Modules/AgentTicketProcess.pm +++ b/Kernel/Modules/AgentTicketProcess.pm @@ -3572,7 +3572,7 @@ sub _RenderOwner { # set server errors my $ServerError = ''; - if ( IsHashRefWithData( $Param{Error} ) && $Param{Error}->{'Owner'} ) { + if ( IsHashRefWithData( $Param{Error} ) && $Param{Error}->{'OwnerID'} ) { $ServerError = 'ServerError'; }