summaryrefslogtreecommitdiffstats
path: root/web/html/pkgsubmit.php
diff options
context:
space:
mode:
authorcanyonknight <canyonknight@gmail.com>2012-10-09 16:54:11 -0400
committerLukas Fleischer <archlinux@cryptocrack.de>2012-10-11 21:19:17 +0200
commitaef6fdfe17ffccdb0da262deef6726f1caaa2172 (patch)
treeaf7084b7a77b3938c4756b341d79695f1bf95f76 /web/html/pkgsubmit.php
parentf3325ce66f004b7580229fc7ddafcf641cfc9aa8 (diff)
downloadaurweb-aef6fdfe17ffccdb0da262deef6726f1caaa2172.tar.xz
pkgsubmit.php: Fix package version not updating
Parameters were not correct for a package update operation. Fix regression of 763cbf8373e3373254ad18f5b69fd16efdc6fd5c Fixes FS#31868 Signed-off-by: canyonknight <canyonknight@gmail.com> Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/html/pkgsubmit.php')
-rw-r--r--web/html/pkgsubmit.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/html/pkgsubmit.php b/web/html/pkgsubmit.php
index 09e95ca..efd90e1 100644
--- a/web/html/pkgsubmit.php
+++ b/web/html/pkgsubmit.php
@@ -381,7 +381,7 @@ if ($uid):
}
# Update package data
- update_pkgdetails($packageID, $new_pkgbuild['pkgname'], $new_pkgbuild['license'], $pkg_version, "", $new_pkgbuild['pkgdesc'], $new_pkgbuild['url'], "", $uid, $dbh);
+ update_pkgdetails($new_pkgbuild['pkgname'], $new_pkgbuild['license'], $pkg_version, $new_pkgbuild['pkgdesc'], $new_pkgbuild['url'], $uid, $packageID, $dbh);
} else {
# This is a brand new package
new_pkgdetails($new_pkgbuild['pkgname'], $new_pkgbuild['license'], $pkg_version, $category_id, $new_pkgbuild['pkgdesc'], $new_pkgbuild['url'], $uid, $dbh);