diff options
author | Marc Alexander <admin@m-a-styles.de> | 2015-10-11 20:27:14 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2015-10-11 20:27:14 +0200 |
commit | 5f05a8a8f8ccb435de774ccbc670f2bdb79d6bf8 (patch) | |
tree | 3a02ca8258cb70bc633c9dea6795b540a4bdcfb7 | |
parent | f6c8338358e5216a62c37bc8ccf252d0e5c6fe0f (diff) | |
parent | 97118a897a40540f1068ec1eb91c7fd72889fa64 (diff) | |
download | forums-5f05a8a8f8ccb435de774ccbc670f2bdb79d6bf8.tar forums-5f05a8a8f8ccb435de774ccbc670f2bdb79d6bf8.tar.gz forums-5f05a8a8f8ccb435de774ccbc670f2bdb79d6bf8.tar.bz2 forums-5f05a8a8f8ccb435de774ccbc670f2bdb79d6bf8.tar.xz forums-5f05a8a8f8ccb435de774ccbc670f2bdb79d6bf8.zip |
Merge pull request #3902 from Zoddo/ticket/14161
[ticket/14161] Wrong var name for core.download_file_send_to_browser_before
-rw-r--r-- | phpBB/download/file.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/phpBB/download/file.php b/phpBB/download/file.php index 3e7965899f..56ea273d5c 100644 --- a/phpBB/download/file.php +++ b/phpBB/download/file.php @@ -258,17 +258,18 @@ else * @var array attachment Array with attachment data * @var int display_cat Attachment category * @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 bool thumbnail Flag indicating if the file is a thumbnail * @since 3.1.6-RC1 + * @change 3.1.7-RC1 Fixing wrong name of a variable (replacing "extension" by "extensions") */ $vars = array( 'attach_id', 'attachment', 'display_cat', 'download_mode', - 'extension', + 'extensions', 'mode', 'thumbnail', ); |