Update api.php

This commit is contained in:
Eric Johansson (neku) 2015-02-11 03:30:15 +01:00
parent b628f7502b
commit 64abd972f3
1 changed files with 0 additions and 2 deletions

View File

@ -13,8 +13,6 @@ if(isset($_GET['d'])) {
//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;