X-Git-Url: http://git.shiar.nl/minimedit.git/blobdiff_plain/e64861a7760cfe34596e193a6a3ed2ef39b25892..72aa68cdc990dde3d67b9c8827cd794e4c447968:/upload.inc.php diff --git a/upload.inc.php b/upload.inc.php index f79600f..e70f573 100644 --- a/upload.inc.php +++ b/upload.inc.php @@ -1,6 +1,4 @@ api = $_SERVER['HTTP_ACCEPT'] == 'text/plain'; - function userupload($input, $target = NULL, $filename = NULL) { switch ($input['error']) { @@ -29,6 +27,9 @@ function userupload($input, $target = NULL, $filename = NULL) $target .= $input['name']; } + if (file_exists($target)) { + throw new Exception("bestandsnaam al aanwezig op $target"); + } if (!@move_uploaded_file($input['tmp_name'], $target)) { throw new Exception("bestand kon niet worden opgeslagen in $target"); }