The ArticleTree links are not passed through the ArticleAttachmentModules, causing all links with special characters etc to break and redirect page to the dashboard.
Quick fix is to add/replace code around line 1241 in Kernel/Modules/AgentTicketZoom.pm
Code: Select all
my %File = %{ $Article{Atms}->{$Count} };
$File{Filename} = $Self->{LayoutObject}->LinkEncode( $File{Filename} || '' );
# show attachment info
$Self->{LayoutObject}->Block(
Name => 'TreeItemAttachmentItem',
Data => {
%Article,
%File,
FileID => $Count,
Target => $Target,
},
);