CSS changes, small bug fix

This commit is contained in:
Jacob 2023-10-01 04:10:34 +02:00
parent 8d882ba177
commit 220f09ede0
2 changed files with 2 additions and 2 deletions

View file

@ -97,7 +97,7 @@ a:hover {
text-decoration: underline;
}
input {
input, select {
font-size: 12pt;
font-family: Monospace;
font-weight: normal;

View file

@ -27,7 +27,7 @@ $uploadLimit = $maxFileSize * 1000000;
$keyID = 0;
$self = dirname($_SERVER['PHP_SELF']);
if (!isset($_FILES['file']['name'])) {
if (!isset($_FILES['file']['name']) || $_FILES['file']['name'] == "") {
if ($WebInterface == 0) {
print "You didn't specify a file.";
die();