Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue #3874: Changed sorting of articlelist SQL to be more consistent. #3875

Merged
merged 1 commit into from
Oct 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Kernel/System/Ticket/Article.pm
Original file line number Diff line number Diff line change
Expand Up @@ -1250,7 +1250,7 @@ sub _MetaArticleList {
av.create_by, av.create_time, av.change_by, av.change_time, av.article_delete
FROM article_version av WHERE av.ticket_id = ? AND av.article_delete = 1
) at
ORDER BY at.create_time ASC, at.id DESC",
ORDER BY at.create_time ASC, at.id ASC",
Bind => [ \$Param{TicketID}, \$Param{TicketID} ],
);
}
Expand Down