diff options
author | swiergot <swiergot> | 2005-09-02 15:34:39 +0000 |
---|---|---|
committer | swiergot <swiergot> | 2005-09-02 15:34:39 +0000 |
commit | d55ee42f8590755adc9a653e2fc55308e30d1a37 (patch) | |
tree | fcc1e2b8180edd572020ce68e92b8e917cf1fe12 /web/html | |
parent | 8f25d155b3b24b3d170278798048473c48206c2f (diff) | |
download | aurweb-d55ee42f8590755adc9a653e2fc55308e30d1a37.tar.xz |
closed #3127 with slight modification
Diffstat (limited to 'web/html')
-rw-r--r-- | web/html/pkgsubmit.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/web/html/pkgsubmit.php b/web/html/pkgsubmit.php index 99c0179..a76206e 100644 --- a/web/html/pkgsubmit.php +++ b/web/html/pkgsubmit.php @@ -178,6 +178,9 @@ if ($_COOKIE["AURSID"]) { while ($f = $d->read()) { if ($f != "." && $f != "..") { $pkg_contents[$f] = filesize($f); + if (preg_match("/^(.*\.pkg\.tar\.gz|filelist)$/", $f)) { + $error = __("Binary packages and filelists are not allowed for upload."); + } } } $d->close(); |