From 18cfe569e0368cee80c1eb5783be97d7446f55e0 Mon Sep 17 00:00:00 2001 From: dsa Date: Mon, 5 Mar 2007 04:07:46 +0000 Subject: Added support for uploading files with '+' characters. --- web/html/pkgsubmit.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'web/html/pkgsubmit.php') diff --git a/web/html/pkgsubmit.php b/web/html/pkgsubmit.php index 5b2efd70..4faa8fde 100644 --- a/web/html/pkgsubmit.php +++ b/web/html/pkgsubmit.php @@ -36,8 +36,8 @@ if ($_COOKIE["AURSID"]) { # Solves the problem when you try to submit PKGBUILD # that have the name with a period like (gstreamer0.10) - # Added by: dsa - $presult = preg_match("/^[a-z0-9][a-z0-9\._-]*$/", $pkg_name); + # Added support for packages with + characters like (mysql++). + $presult = preg_match("/^[a-z0-9][a-z0-9\.+_-]*$/", $pkg_name); if ($presult == FALSE || $presult <= 0) { # FALSE => error processing regex, 0 => invalid characters -- cgit v1.2.3-24-g4f1b