Update api.php

This commit is contained in:
Eric Johansson (neku) 2015-02-23 15:33:49 +01:00
parent 9539b2959c
commit 3c9440099e
1 changed files with 3 additions and 0 deletions

View File

@ -5,6 +5,9 @@ if(isset($_GET['d'])) {
include_once('includes/core.php');
switch ($_GET['d']) {
case 'upload':
//If no file is being posted, exit
if(empty($_FILES['file'])){
exit('You fucked up, nothing to do.');}
//Set the name value to the original filename
$name = $_FILES['file']['name'];
$arg = 'custom_original';