Skip to content

Commit

Permalink
Merge branch 'rel-10_0' into rel-10_1
Browse files Browse the repository at this point in the history
  • Loading branch information
bschmalhofer committed Sep 30, 2024
2 parents 7e4f746 + 8fc2ab2 commit 0baa120
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions Kernel/Modules/AgentTicketQuickClose.pm
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,14 @@ sub _SetState {

return if !$State;

if ( $Param{Config}{RequiredLock} ) {
$TicketObject->TicketOwnerSet(
TicketID => $Self->{TicketID},
UserID => $Self->{UserID},
NewUserID => $Self->{UserID},
);
}

my $Success = $TicketObject->TicketStateSet(
State => $State,
TicketID => $Self->{TicketID},
Expand Down
4 changes: 2 additions & 2 deletions scripts/test/Selenium/Output/Preferences/Customer/Password.t
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ $Selenium->RunTest(
$Selenium->find_element( "#Update", 'css' )->VerifiedClick();

# check for correct password update preferences message on screen
my $UpdateMessage = "Preferences updated successfully!";
$Selenium->content_contains( $UpdateMessage, 'Customer preference password - updated' );
my $UpdateMessage = "Session invalid. Please log in again.";
$Selenium->content_contains( $UpdateMessage, 'Customer preference password - updated and session invalidated.' );
};
}
);
Expand Down

0 comments on commit 0baa120

Please sign in to comment.