aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2015-10-11 20:27:14 +0200
committerMarc Alexander <admin@m-a-styles.de>2015-10-11 20:27:14 +0200
commit5f05a8a8f8ccb435de774ccbc670f2bdb79d6bf8 (patch)
tree3a02ca8258cb70bc633c9dea6795b540a4bdcfb7
parentf6c8338358e5216a62c37bc8ccf252d0e5c6fe0f (diff)
parent97118a897a40540f1068ec1eb91c7fd72889fa64 (diff)
downloadforums-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.php5
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',
);