2
0
forked from Wavyzz/dolibarr

Minor change

This commit is contained in:
Laurent Destailleur
2007-10-14 23:10:17 +00:00
parent fc98407b42
commit 6b838b0a62
3 changed files with 7 additions and 1 deletions

View File

@@ -1719,7 +1719,9 @@ function doliMoveFileUpload($src_file, $dest_file)
return false;
}
return move_uploaded_file($src_file, $file_name);
$return=move_uploaded_file($src_file, $file_name);
return $return;
}