Fix expense file uploads always showing even though nothing got uploaded

This commit is contained in:
root 2019-04-13 23:32:00 -04:00
parent 0a7618c9ec
commit fd4196bcac
1 changed files with 1 additions and 1 deletions

View File

@ -340,7 +340,7 @@ if(isset($_POST['add_expense'])){
$category = intval($_POST['category']); $category = intval($_POST['category']);
$description = strip_tags(mysqli_real_escape_string($mysqli,$_POST['description'])); $description = strip_tags(mysqli_real_escape_string($mysqli,$_POST['description']));
if(!empty($_FILES['file'])){ if($_FILES['file']['tmp_name']!='') {
$path = "uploads/expenses/$vendor/"; $path = "uploads/expenses/$vendor/";
$path = $path . basename( $_FILES['file']['name']); $path = $path . basename( $_FILES['file']['name']);
$file_name = basename($path); $file_name = basename($path);