From 5221ba09592f58d0add3a51a6a546ef46a79b7aa Mon Sep 17 00:00:00 2001 From: Matt Pass Date: Wed, 23 Jan 2013 19:48:56 +0000 Subject: [PATCH] Shows server message to indicate file upload Users aren't always aware if a file upload has happened OK, this server message helps put the point across. --- lib/file-control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/file-control.php b/lib/file-control.php index cb9f14a..e54d132 100644 --- a/lib/file-control.php +++ b/lib/file-control.php @@ -103,7 +103,7 @@ if ($_GET['action']=="upload") { $this->uploadFile=$uploadDir.$current->name; $fileName = $current->name; if ($this->upload($current,$this->uploadFile)) { - echo ''; + echo ''; } else { echo ""; }