summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--web/html/pkgsubmit.php5
-rw-r--r--web/lang/submit_po.inc5
2 files changed, 10 insertions, 0 deletions
diff --git a/web/html/pkgsubmit.php b/web/html/pkgsubmit.php
index ed2fb086..9ef2737c 100644
--- a/web/html/pkgsubmit.php
+++ b/web/html/pkgsubmit.php
@@ -67,6 +67,11 @@ if ($_COOKIE["AURSID"]) {
# can only add/change packages in Unsupported.
#
+ #Before processing, make sure we even have a file
+ #
+ if ($_FILES['pfile']['size'] == 0){
+ $error = __("Error - No file uploaded");
+ }
if (!$error) {
# no errors checking upload permissions, go ahead and try to process
diff --git a/web/lang/submit_po.inc b/web/lang/submit_po.inc
index c21482a2..363fd5d7 100644
--- a/web/lang/submit_po.inc
+++ b/web/lang/submit_po.inc
@@ -201,4 +201,9 @@ $_t["en"]["Package upload successful."] = "Package upload successful.";
# $_t["fr"]["Package upload successful"] = "--> Traduction française ici. <--";
# $_t["de"]["Package upload successful"] = "--> Deutsche Übersetzung hier. <--";
+$_t["en"]["Error - No file uploaded"] = "Error - No file uploaded";
+# $_t["es"]["Package upload successful"] = "--> Traducción española aquí. <--";
+# $_t["fr"]["Package upload successful"] = "--> Traduction française ici. <--";
+# $_t["de"]["Package upload successful"] = "--> Deutsche Übersetzung hier. <--";
+
?>