diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2008-08-21 14:19:42 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2008-08-21 14:19:42 +0000 |
commit | 7e28be59684bf391c1cc58c480f7ed7dfba0f093 (patch) | |
tree | 9efb273ccea323cbe51e9b209a88744e1cc2ce14 /phpBB/download | |
parent | 9db6e7caa6d1224027dbd958db12e0c8969852c2 (diff) | |
download | forums-7e28be59684bf391c1cc58c480f7ed7dfba0f093.tar forums-7e28be59684bf391c1cc58c480f7ed7dfba0f093.tar.gz forums-7e28be59684bf391c1cc58c480f7ed7dfba0f093.tar.bz2 forums-7e28be59684bf391c1cc58c480f7ed7dfba0f093.tar.xz forums-7e28be59684bf391c1cc58c480f7ed7dfba0f093.zip |
close db connection before delivering file. Also make sure connection can't be closed twice.
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8772 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/download')
-rw-r--r-- | phpBB/download/file.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/download/file.php b/phpBB/download/file.php index 09677738a5..dc3a14eb4c 100644 --- a/phpBB/download/file.php +++ b/phpBB/download/file.php @@ -479,6 +479,10 @@ function send_file_to_browser($attachment, $upload_dir, $category) { header("Content-Length: $size"); } + + // Close the db connection before sending the file + $db->sql_close(); + if (!set_modified_headers($attachment['filetime'], $user->browser)) { // Try to deliver in chunks |