mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-02 23:07:39 +02:00
[ticket/15687] Fix incorrect variable names thanks to copy & paste
PHPBB3-15687
This commit is contained in:
@@ -873,7 +873,7 @@ function posting_gen_attachment_entry($attachment_data, &$filename_data, $show_a
|
|||||||
'phpbb_storage_attachment',
|
'phpbb_storage_attachment',
|
||||||
[
|
[
|
||||||
'file' => (int) $attach_row['attach_id'],
|
'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',
|
'phpbb_storage_attachment',
|
||||||
[
|
[
|
||||||
'file' => (int) $new_entry['attach_id'],
|
'file' => (int) $new_entry['attach_id'],
|
||||||
'filename' => $attachment['real_filename'],
|
'filename' => $new_entry['real_filename'],
|
||||||
]
|
]
|
||||||
);
|
);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user