Closed
Description
In Transfer audit:
The filename is "undefined".
$lang['report_recipient_event_download_started'] = 'Recipient started downloading {file.path} ({size:file.size})';
lang.js is trying to replace {file.path} for the filename, but {file.path} doesn't exist.
In transfer_table.js:
var rpl = log[i];
rpl[log[i].target.type.toLowerCase()] = log[i].target;
$('<td />').html(lang.tr(lid).r(rpl).out()).appendTo(tr);
target.name has been "renamed" to file.name.
Resolution: All {file.path} should be changed to {file.name} in lang.php and POEditor.