1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-11 03:04:09 +02:00

[ticket/15286] Fix tests after rebase

PHPBB3-15286
This commit is contained in:
Rubén Calvo
2017-10-31 17:35:25 +01:00
parent 6bd01d1506
commit f80c59cb05
8 changed files with 18 additions and 7 deletions

View File

@@ -278,6 +278,7 @@ else
* @var array extensions Array with file extensions data
* @var string mode Download mode
* @var bool thumbnail Flag indicating if the file is a thumbnail
* @var string redirect Do a redirection instead of reading the file
* @since 3.1.6-RC1
* @changed 3.1.7-RC1 Fixing wrong name of a variable (replacing "extension" by "extensions")
* @changed 3.3.0-a1 Add redirect variable
@@ -314,7 +315,8 @@ else
{
redirect($redirect, false, true);
}
else {
else
{
send_file_to_browser($attachment, $display_cat);
}