Skip to content

Commit

Permalink
Fixed Bug - Problem when handling errors in the owner field in the ac…
Browse files Browse the repository at this point in the history
…tivity dialog [#627](#627).
  • Loading branch information
dennykorsukewitz committed Jan 21, 2025
1 parent 368e9db commit ef375ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion Kernel/Modules/AgentTicketProcess.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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';
}

Expand Down

0 comments on commit ef375ac

Please sign in to comment.