mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-23 02:18:56 +00:00
[ticket/15687] Fix incorrect variable names thanks to copy & paste
PHPBB3-15687
This commit is contained in:
parent
df6ab1a811
commit
b02ad26015
2 changed files with 2 additions and 2 deletions
|
@ -873,7 +873,7 @@ function posting_gen_attachment_entry($attachment_data, &$filename_data, $show_a
|
|||
'phpbb_storage_attachment',
|
||||
[
|
||||
'file' => (int) $attach_row['attach_id'],
|
||||
'filename' => $attachment['real_filename'],
|
||||
'filename' => $attach_row['real_filename'],
|
||||
]
|
||||
);
|
||||
|
||||
|
|
|
@ -1720,7 +1720,7 @@ class parse_message extends bbcode_firstpass
|
|||
'phpbb_storage_attachment',
|
||||
[
|
||||
'file' => (int) $new_entry['attach_id'],
|
||||
'filename' => $attachment['real_filename'],
|
||||
'filename' => $new_entry['real_filename'],
|
||||
]
|
||||
);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue