From 64c27042fcda133e394c231d943c6e29d2916df3 Mon Sep 17 00:00:00 2001 From: "Eric Johansson (neku)" Date: Wed, 11 Feb 2015 17:29:54 +0100 Subject: [PATCH] Update api.php --- api.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/api.php b/api.php index c5ea316..220691c 100644 --- a/api.php +++ b/api.php @@ -7,13 +7,14 @@ if(isset($_GET['d'])) { case 'upload': //Set the name value to the original filename $name = $_FILES['file']['name']; + $arg = 'custom_original'; //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['randomname'])){ $name = $_FILES['file']['name']; - $arg = 'rand';} + $arg = 'random';} //Call the save function which sends the file+name save_file($_FILES['file']['tmp_name'], $name, $arg); break;