Update api.php

This commit is contained in:
Eric Johansson (neku) 2015-02-10 16:02:20 +01:00
parent 1732ba5bd9
commit b628f7502b
1 changed files with 5 additions and 0 deletions

View File

@ -10,6 +10,11 @@ if(isset($_GET['d'])) {
//If the value name contains a custom name, set the name value
if(!empty($_POST['name'])){
$name = $_POST['name'];}
//If value contains anything, keep original filename
if(!empty($_POST['originalname'])){
$name = $_FILES['file']['name'];}
//Remove any whitespace from name
$name = preg_replace('/\s+/', '', $name);
//Call the save function which sends the file+name
save_file($_FILES['file']['tmp_name'], $name);
break;