From 810ef9347115b22ab34f66a6954376b167d2ce79 Mon Sep 17 00:00:00 2001
From: qorg11 <qorg@vxempire.xyz>
Date: Sun, 26 Apr 2020 19:31:39 +0200
Subject: [PATCH] Cleaned code. A bit.

---
 http/upload.cgi | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/http/upload.cgi b/http/upload.cgi
index 65bfa89..146d2e7 100755
--- a/http/upload.cgi
+++ b/http/upload.cgi
@@ -24,9 +24,13 @@ my $filename = $q->param('file');
 my $upload_dir = "files/";
 print $q->header();
 $size    = $ENV{CONTENT_LENGTH};
+# Configuration
+
 $MAX_SIZE = 1024*1024*10; # Change for your size
 $MAX_SIZE_MB = $MAX_SIZE / 1024 / 1024; # Don't change this
-if($filename eq "") {
+
+if($filename eq "")
+{
     print("What are you looking for?");
     exit;
 }