diff options
author | Igor Wiedler <igor@wiedler.ch> | 2012-11-09 23:00:44 +0100 |
---|---|---|
committer | Igor Wiedler <igor@wiedler.ch> | 2012-11-10 12:02:56 +0100 |
commit | 897e8f2e8361839a92acae7e77225ef212e44647 (patch) | |
tree | 106a2dbcdc3bcc40295ffca9c17d6ff086469ed0 /phpBB/download | |
parent | 3f2cbaac34e1cf126c73bebc7dcc3cdbd203d1b2 (diff) | |
download | forums-897e8f2e8361839a92acae7e77225ef212e44647.tar forums-897e8f2e8361839a92acae7e77225ef212e44647.tar.gz forums-897e8f2e8361839a92acae7e77225ef212e44647.tar.bz2 forums-897e8f2e8361839a92acae7e77225ef212e44647.tar.xz forums-897e8f2e8361839a92acae7e77225ef212e44647.zip |
[ticket/11152] Move container functions to a separate function file
PHPBB3-11152
Diffstat (limited to 'phpBB/download')
-rw-r--r-- | phpBB/download/file.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/download/file.php b/phpBB/download/file.php index 7ffd335daa..eb1ec85afe 100644 --- a/phpBB/download/file.php +++ b/phpBB/download/file.php @@ -48,6 +48,7 @@ if (isset($_GET['avatar'])) require($phpbb_root_path . 'includes/db/' . $dbms . '.' . $phpEx); require($phpbb_root_path . 'includes/constants.' . $phpEx); require($phpbb_root_path . 'includes/functions.' . $phpEx); + require($phpbb_root_path . 'includes/functions_container.' . $phpEx); require($phpbb_root_path . 'includes/functions_download' . '.' . $phpEx); require($phpbb_root_path . 'includes/utf/utf_tools.' . $phpEx); @@ -404,7 +405,7 @@ else $disallowed[$attach['extension']] = $attach['extension']; continue; } - + $prefix = ''; if ($topic_id) { |