From 35cff75156ddd77aad2f97bf756008486b630863 Mon Sep 17 00:00:00 2001 From: Loui Chang Date: Sun, 28 Dec 2008 09:33:36 -0500 Subject: Correct undefined constant error in pkgsubmit. Clean up a couple of notices. Signed-off-by: Loui Chang --- web/html/pkgsubmit.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'web/html') diff --git a/web/html/pkgsubmit.php b/web/html/pkgsubmit.php index 257e3b5..a7b4152 100644 --- a/web/html/pkgsubmit.php +++ b/web/html/pkgsubmit.php @@ -18,7 +18,7 @@ if ($_COOKIE["AURSID"]): # Track upload errors $error = ""; - if ($_REQUEST["pkgsubmit"]) { + if (isset($_REQUEST['pkgsubmit'])) { # Before processing, make sure we even have a file if ($_FILES['pfile']['size'] == 0){ @@ -205,7 +205,9 @@ if ($_COOKIE["AURSID"]): } } - $incoming_pkgdir = INCOMING_DIR . $pkg_name; + if (isset($pkg_name)) { + $incoming_pkgdir = INCOMING_DIR . $pkg_name; + } if (!$error) { # First, see if this package already exists, and if it can be overwritten @@ -243,7 +245,7 @@ if ($_COOKIE["AURSID"]): } # Chmod files after everything has been done. - if (!error && !chmod_group($incoming_pkgdir)) { + if (!$error && !chmod_group($incoming_pkgdir)) { $error = __("Could not chmod directory %s.", $incoming_pkgdir); } @@ -398,7 +400,7 @@ html_header("Submit");