Skip to content

Commit

Permalink
Merge branch 'rel-10_1' into rel-11_0
Browse files Browse the repository at this point in the history
  • Loading branch information
bschmalhofer committed Feb 7, 2025
2 parents 245817d + eedbe31 commit b3c9223
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions Kernel/System/Ticket.pm
Original file line number Diff line number Diff line change
Expand Up @@ -957,7 +957,7 @@ sub TicketSubjectBuild {
my $Subject = $Param{Subject} || '';
my $Action = $Param{Action} || 'Reply';

# cleanup of subject, remove existing ticket numbers and reply indentifier
# cleanup of subject, remove existing ticket numbers and reply identifier
if ( !$Param{NoCleanup} ) {
$Subject = $Self->TicketSubjectClean(%Param);
}
Expand Down Expand Up @@ -3002,7 +3002,7 @@ sub TicketEscalationSuspendCalculate {
# the difference between it and an full hour later so we come
# to the right number as if we would have moved with the smaller
# steps.
# otherwise it might happen/has happend that we move in steps of
# otherwise it might happen/has happened that we move in steps of
# 1 second over a weekend (and vacation days) which causes nearly
# endless loops... oops :)
if ( !$WorkingTime && $UpdateDiffTime < 3600 ) {
Expand Down Expand Up @@ -3380,7 +3380,7 @@ sub TicketSLAList {
return;
}

# return emty hash, if no service id is given
# return empty hash, if no service id is given
if ( !$Param{ServiceID} ) {
return ();
}
Expand Down Expand Up @@ -6835,6 +6835,11 @@ sub TicketMergeLinkedObjects {
],
);

# cleanup cache of link object
$Kernel::OM->Get('Kernel::System::Cache')->CleanUp(
Type => 'LinkObject',
);

return 1;
}

Expand Down

0 comments on commit b3c9223

Please sign in to comment.