mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Merge pull request #3902 from Zoddo/ticket/14161
[ticket/14161] Wrong var name for core.download_file_send_to_browser_before
This commit is contained in:
commit
5f05a8a8f8
1 changed files with 3 additions and 2 deletions
|
@ -258,17 +258,18 @@ else
|
||||||
* @var array attachment Array with attachment data
|
* @var array attachment Array with attachment data
|
||||||
* @var int display_cat Attachment category
|
* @var int display_cat Attachment category
|
||||||
* @var int download_mode File extension specific download mode
|
* @var int download_mode File extension specific download mode
|
||||||
* @var array extension Array with file extensions data
|
* @var array extensions Array with file extensions data
|
||||||
* @var string mode Download mode
|
* @var string mode Download mode
|
||||||
* @var bool thumbnail Flag indicating if the file is a thumbnail
|
* @var bool thumbnail Flag indicating if the file is a thumbnail
|
||||||
* @since 3.1.6-RC1
|
* @since 3.1.6-RC1
|
||||||
|
* @change 3.1.7-RC1 Fixing wrong name of a variable (replacing "extension" by "extensions")
|
||||||
*/
|
*/
|
||||||
$vars = array(
|
$vars = array(
|
||||||
'attach_id',
|
'attach_id',
|
||||||
'attachment',
|
'attachment',
|
||||||
'display_cat',
|
'display_cat',
|
||||||
'download_mode',
|
'download_mode',
|
||||||
'extension',
|
'extensions',
|
||||||
'mode',
|
'mode',
|
||||||
'thumbnail',
|
'thumbnail',
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Reference in a new issue