1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-05 22:14:59 +02:00

[ticket/15687] Add missing int cast

PHPBB3-15687
This commit is contained in:
Marc Alexander 2023-07-20 09:09:59 +02:00
parent 4e9cf239ed
commit c48092f6e7
No known key found for this signature in database
GPG Key ID: 50E0D2423696F995

View File

@ -1311,7 +1311,7 @@ class acp_attachments
'U_FILE' => $this->controller_helper->route(
'phpbb_storage_attachment',
[
'id' => $row['attach_id'],
'id' => (int) $row['attach_id'],
'filename' => $row['real_filename'],
]
)