summaryrefslogtreecommitdiffstats
path: root/web/html/packages.php
diff options
context:
space:
mode:
authorpjmattal <pjmattal>2005-04-06 04:54:11 +0200
committerpjmattal <pjmattal>2005-04-06 04:54:11 +0200
commit71b5b9e6b7e92fe1f2c0c49f47af1c1255f41e24 (patch)
tree7ecc58341c00433e99bf52f61384c525ebdff8c2 /web/html/packages.php
parent7fccb8b634118a2f4f92220b194dc74273b15957 (diff)
downloadaur-71b5b9e6b7e92fe1f2c0c49f47af1c1255f41e24.tar.gz
aur-71b5b9e6b7e92fe1f2c0c49f47af1c1255f41e24.tar.xz
many changes in prep for launch
new doc page added changed AUR to community lower-cased unsupported fixed half of the bug with changing categories: categories now can't be changed for packages in community however they can still be changed out from under maintainers by joe users for unsupported packages debugged problem with package details not found when unsupported uploads were with Category 0 (changed default to 19)
Diffstat (limited to 'web/html/packages.php')
-rw-r--r--web/html/packages.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/html/packages.php b/web/html/packages.php
index a211b34c..48fc9a0b 100644
--- a/web/html/packages.php
+++ b/web/html/packages.php
@@ -198,7 +198,7 @@ if (isset($_REQUEST["do_Flag"])) {
$q = "SELECT Packages.ID FROM Packages, PackageLocations ";
$q.= "WHERE Packages.ID IN (" . $delete . ") ";
$q.= "AND Packages.LocationID = PackageLocations.ID ";
- $q.= "AND PackageLocations.Location = 'Unsupported' ";
+ $q.= "AND PackageLocations.Location = 'unsupported' ";
$q.= "AND AURMaintainerUID IN (0, " . uid_from_sid($_COOKIE["AURSID"]) . ")";
$result = db_query($q, $dbh);
if ($result != Null && mysql_num_rows($result) > 0) {