mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/15687] Add missing int cast
PHPBB3-15687
This commit is contained in:
parent
4e9cf239ed
commit
c48092f6e7
1 changed files with 1 additions and 1 deletions
|
@ -1311,7 +1311,7 @@ class acp_attachments
|
||||||
'U_FILE' => $this->controller_helper->route(
|
'U_FILE' => $this->controller_helper->route(
|
||||||
'phpbb_storage_attachment',
|
'phpbb_storage_attachment',
|
||||||
[
|
[
|
||||||
'id' => $row['attach_id'],
|
'id' => (int) $row['attach_id'],
|
||||||
'filename' => $row['real_filename'],
|
'filename' => $row['real_filename'],
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue