diff options
Diffstat (limited to 'web/html')
-rw-r--r-- | web/html/pkgsubmit.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/web/html/pkgsubmit.php b/web/html/pkgsubmit.php index 1b74ce7..d7026b7 100644 --- a/web/html/pkgsubmit.php +++ b/web/html/pkgsubmit.php @@ -361,7 +361,9 @@ if ($_COOKIE["AURSID"]) { $q.="Name='".mysql_real_escape_string($new_pkgbuild['pkgname'])."', "; $q.="Version='".mysql_real_escape_string($new_pkgbuild['pkgver'])."-". mysql_real_escape_string($new_pkgbuild['pkgrel'])."',"; + if ($_POST['category'] > 1) { $q.="CategoryID=".mysql_real_escape_string($_REQUEST['category']).", "; + } $q.="License='".mysql_real_escape_string($new_pkgbuild['license'])."', "; $q.="Description='".mysql_real_escape_string($new_pkgbuild['pkgdesc'])."', "; $q.="URL='".mysql_real_escape_string($new_pkgbuild['url'])."', "; |