Merge pull request #16 from cdauth/pr16

Fix PHP warning about is_uploaded_file()
This commit is contained in:
Tobias Reich 2013-10-05 06:55:57 -07:00
commit 02b21f8a90

View File

@ -117,7 +117,7 @@ function upload($files, $albumID) {
$data = $data[0];
// Import if not uploaded via web
if (!is_uploaded_file($file)) {
if (!is_uploaded_file($tmp_name)) {
if (copy($tmp_name, "../uploads/big/" . md5($id) . ".$data")) {
unlink($tmp_name);
$import_name = $tmp_name;