Merge pull request #3490 from prototech/ticket/13550

[ticket/13550] Improve checks for Plupload temp directory writability
This commit is contained in:
Marc Alexander 2015-03-16 14:43:19 +01:00
commit ee70b364c7

View file

@ -326,7 +326,7 @@ class plupload
$tmp_file = $this->temporary_filepath($upload['tmp_name']); $tmp_file = $this->temporary_filepath($upload['tmp_name']);
if (!move_uploaded_file($upload['tmp_name'], $tmp_file)) if (!phpbb_is_writable($this->temporary_directory) || !move_uploaded_file($upload['tmp_name'], $tmp_file))
{ {
$this->emit_error(103, 'PLUPLOAD_ERR_MOVE_UPLOADED'); $this->emit_error(103, 'PLUPLOAD_ERR_MOVE_UPLOADED');
} }